/* *********************** BEGIN JQUERY ********************** */

jQuery(function() {
		   
	jQuery('#overview').hide();
	
	var newWidth = jQuery(document).width() ;
	var newHeight = jQuery(document).height() ;
	var marginLeft = (newWidth/2)*-1;
	jQuery('#background').width( newWidth );
	jQuery('#background').height( newHeight );
	jQuery('#background').css( 'margin-left', marginLeft );
	jQuery('#mpl').width( newWidth );
	jQuery('#mpl').height( newHeight );

	jQuery('#overviewlink').fancybox({
		'width'				: '85%',
		'height'			: '85%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	jQuery('#fulllivinglink').fancybox({
		'width'				: '85%',
		'height'			: '85%',
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});

});

/* ************************ END JQUERY *********************** */
