/*//////////////////////////////////////////////////////////////////////////////////////////
	Global Variables
//////////////////////////////////////////////////////////////////////////////////////////*/





/*//////////////////////////////////////////////////////////////////////////////////////////
	jQuery
//////////////////////////////////////////////////////////////////////////////////////////*/

	
	$(document).ready(function(){
		readyHandler()
	});
	
	$(window).resize(function(){
		resizeHandler()
	});

	
/*//////////////////////////////////////////////////////////////////////////////////////////
	Functions
//////////////////////////////////////////////////////////////////////////////////////////*/


	function resizeHandler()
	{
		//alert("resizeHandler");
		
		var windowW = $(window).width();
		var windowH = $(window).height();
		
		$("#flashcontent").css("height", function(index){
			var new_height = Math.ceil($(this).width()*600/800);
			//alert($(this).width()+" - "+new_height);
			return new_height+"px";
		});
		
		$("#flashcontent").css("marginTop", function(index){
			var margin_top = Math.ceil((windowH-$(this).height())/2);
			//alert(windowH+" - "+margin_top);
			return margin_top+"px";
		});

	}
	
	function readyHandler()
	{
		resizeHandler();
	}
	
	



