// JavaScript Document
$.fn.setScene = function(klass){
	windowwidth = $(window).width();
	windowheight = $(window).height();
	
	
	ratio = windowwidth/1595;
	ratioHeight = windowheight/700;
	$(klass).each(function(){
		width = $(this).width();
		height = $(this).height();
		new_width = width*ratio;
		new_height = height*ratioHeight;
		$(this).css({"height":new_height+"px", "width":new_width+"px"});
	});
	
	$('.footer_menu_hidden').hover(function(){},function(){$('.footer_menu_hidden').slideUp();});
}
