$(document).ready(function(){
	jQuery(function(){jQuery(document).pngFix();});
	
	$(".homePage a").click(function () {
          $(".homePage2").fadeIn(500);
		  $(".homePage").fadeOut(500);
          return false;
    });
	jQuery.event.add(window, "load", resizeFrame);
	jQuery.event.add(window, "resize", resizeFrame);

	function resizeFrame() {
	   var height_window        = $(document).height();
	   var height_container    	= $('.container').height();
	   var height_bottom    	= $('.bottomHolder').height();
	   new_margin               = (height_window-height_container)-height_bottom; 
	 
	   $('#bottom').css('margin-top', new_margin + 'px');
	}	
	
	$("a.iframe").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity': 0.6,
		'overlayColor': '#000',
		'width': 420,
		'height': 550
	});
	
	$("a.videoyt").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity': 0.6,
		'overlayColor': '#000',
		'width': 700,
		'height': 400
	});
});
