/*
| ---------------------------------------
| Document Ready
| ---------------------------------------
*/
jQuery(document).ready(function() {

	if(navigator.userAgent.match(/iPad/i)) {
	
		jQuery('a#ipadSwitchLink').attr('href', 'http://www.fiorigroup.com/cms/fiorimap/indexipad.php?lang=' + current_language);
		
		jQuery("a#ipadSwitchLink").fancybox({
			'width'			:	800, 
			'height'		:	500
		});
		
	} else if(navigator.userAgent.match(/iPhone/i)) {
	
		jQuery('a#ipadSwitchLink').attr('href', 'http://www.fiorigroup.com/cms/fiorimap/indexiphone.php?lang=' + current_language);
		
		jQuery("a#ipadSwitchLink").fancybox({
			'width'			:	600, 
			'height'		:	400
		});
		
	} else {
	
		jQuery('a#ipadSwitchLink').attr('href', 'http://www.fiorigroup.com/cms/fiorimap/indexweb.php?lang=' + current_language);
		if (jQuery.browser.msie) {
		
			jQuery("a#ipadSwitchLink").fancybox({
				'width'			:	820, 
				'height'		:	520
			});
		} else {
			jQuery("a#ipadSwitchLink").fancybox({
				'width'			:	800, 
				'height'		:	500
			});
		}
	}
});
