 $(document).ready(function() {

	$(window).resize(function(){
		tweak();
	});
	
	function tweak(){
		
		var h = $(window).height();
		var w = $(window).width();
		
		if(h > 700){
			$('#flashcontent').height(h);
		}else{
			$('#flashcontent').height(700);
		}
		
		if(w > 1200){
			$('#flashcontent').width(w);
		}else{
			$('#flashcontent').width(1200);
		}
		
		//$('#flashcontent').html("Window: "+w+"x"+h+"<br>"+"#flashcontent: "+$('#flashcontent').width()+"x"+$('#flashcontent').height());
	}
  	
  	tweak();
  	
 });