$(document).ready(function() {
 /* This is basic - uses default settings */

	$("a#single_image").fancybox();
	/* Using custom settings */ 

	$("a#inline").fancybox({ 
		'hideOnContentClick': true
	});


	$("a.fancy_movie").fancybox({ 
			'frameWidth':			320,
			'frameHeight': 			246,
			'overlayOpacity':		0.6,
			'easingIn':				'easeInSine',
			'easingOut':			'easeOutSine',
			'hideOnContentClick':	false,
			'callbackOnClose': 		function() { $("#fancy_content").empty(); } 
	});


	$("a.fancy_iframe").fancybox({ 
		'overlayShow': 		true,
		'frameWidth': 		900,
		'frameHeight': 		400,
		'zoomSpeedIn': 		600,
		'zoomSpeedOut': 	500,
		'easingIn': 		'easeInSine',
		'easingOut': 		'easeOutSine'

	}); 

	$("a.fancy_iframe_str_rp").fancybox({ 
		'overlayShow': 		true,
		'frameWidth': 		825,
		'frameHeight': 		600,
		'zoomSpeedIn': 		600,
		'zoomSpeedOut': 	500,
		'easingIn': 		'easeInBounce',
		'easingOut': 		'easeOutBounce'

	}); 
	
	$("a.fancy_test").fancybox({ 
		'overlayShow'			: true,
		'zoomSpeedIn'			: 1500,
		'zoomSpeedOut'			: 1000,
		'easingIn': 		'easeOutElastic',
		'easingOut': 		'easeInBounce'

	}); 
}); 

// Background Postion Fix

$(document).ready(resizeWindow);
$(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
	var $j = jQuery; 
	var body_width = $j('body').width()
	if (body_width <= 1000)
	  {
	  		$j("div#whole_site_container, div#complete_entire_whole_site_container, div#entire_whole_site_container, div#footer_container").css({'background-position:':'400px 0px', 'width' : '1000px' });
	  }
	else
	  {
  			//alert("RESIZED-LARGE");
			$j("div#whole_site_container, div#complete_entire_whole_site_container, div#entire_whole_site_container, div#footer_container").css({'background-position:':'center top', 'width' : '100%'});
		}
	  
	}	 