(function(){
	
	$.fn.djy = function(){
		
		$(window).bind("load", function(){
			$("#enter").resizenow();
		});
		
		$(window).bind("resize", function(){
			$("#enter").resizenow();
		});

	}
	
	$.fn.resizenow = function(){
		$.left_pos = Math.floor( ( $(window).width() - 1680 ) / 2 );
				
		$("#video").css("left", $.left_pos );
	}
	
})(jQuery)
