function resizeImage(){
	if($("#header_image img").width() <= $("#header_image").width() || $("#header_image img").width() >= $("#header_image").width()){
		
		$("#header_image img") 
			   .width($("#header_image").width() * 1.03)
			   .height($("#header_image").width() * .3);
	}
		
	if($("#header_image img").height() <= $("#header_image").height()){	
		$("#header_image img")
			.height($("#header_image").height())
			.width($("#header_image").height() * 3.33);
		
	}	
	
	//$("#header_image img").center();
	
	if($("#footer img").width() <= $("#footer").width() || $("#footer img").width() >= $("#footer").width()){
		
		$("#footer img") 
			   .width($("#footer").width() * 1)
			   .height($("#footer").width() * .21);
	}
	
	
}

$(document).ready(function(){
	resizeImage();
	
	$("#header_image").corner("tl bl 7px");	
	
	
	
});

$(window).resize(function(){
	resizeImage();	
});

$(window).load(function(){
	resizeImage();	
});