
			
		
		
jQuery(document).ready(function($) {

	$("a.iframe").fancybox({
		"width": 663,
		"height": 570,
		"titlePosition": "outside",
		"overlayOpacity": 0.7,
		"scrolling":"yes",
		"overlayColor": "#000000"
	});
	
	
	
	$("a.checkBrowser").click(function(ev) {
		ev.preventDefault();
		
		var is_iphone = $.browser.webkit && (navigator.userAgent.search(/iphone|ipod/i) != -1);
		if (is_iphone) {
			window.location.assign("http://m.mushroommania.com.au/appstore/")
		}
		else{
			var left = (screen.width/2)-(650/2);
			var top = (screen.height/2)-(450/2);
			window.open ('http://m.mushroommania.com.au/web/','Mushroom_Mania_2011_Notification', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=650, height=450, top='+top+', left='+left);
		}
		
		
	});
});

