// JavaScript Document
$(document).ready(function(){
	
	var imgHeight 	= $('#content #home-img img').height();
	var imgWidth	= $('#content #home-img img').width();
	onResize();
	
	if($('body').is('#home'))$(window).resize(function (){
		onResize();
	});
	
	function onResize()
	{
		imgHeight 	= $('#content #home-img img').height();
		imgWidth	= $('#content #home-img img').width();
				
		if( $(window).width() / imgWidth >= $(window).height() / imgHeight)
		{
			$('#home #content #home-img img').width( $(window).width());
			$('#home #content #home-img img').height( imgHeight * ($(window).width() / imgWidth) );
		} else {
			$('#home #content #home-img img').height( $(window).height());
			$('#home #content #home-img img').width( imgWidth * (( $(window).height()) / imgHeight) );
		}
		
		
	}
});
