$(document).ready(function(){
	
	$('#flashcontent').css({
		width: $(window).width(),
		height:	$(window).height()

	});
	
	$(window).resize(function() {
		$('#flashcontent').css({
			width: $(window).width(),
			height:	$(window).height()
		});
	});

});
