/******************************************************
       Project:  BSH Christmas Card 2010

       Company:  BSH
     Developer:  Martin Metodiev

    Started on:  14/12/2009
    Updated on:  22/12/2009

    Sheet type:  DEFAULT Stylesheet
******************************************************/



/* ........................... */
	jQuery(document).ready(function() {
		var mVid = $("#main object, #main embed"), mVidR = 16 / 9;
		function playerRatio() {
			$("#header").css("width", $("#main").width());
			mVid.attr("width", $("#main").width());
			mVid.attr("height", ($("#main").width() / mVidR) + 25);
		}			
		
		playerRatio();
		
		jQuery(window).resize(function() {
			
			playerRatio();
			
		})
	});
/* ........................... */



/*****************************************************/
