function reSize(){

	var oBody = IFrame1.document.body;
	var oFrame = document.all("IFrame1");
	
	oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight);
	oFrame.style.width = oBody.scrollWidth + (oBody.offsetWidth - oBody.clientWidth);
}

	$(document).ready(function(){	  	    			
		
		$("#submenu div").click(function(){
			$("body h2").fadeOut(500);
			$("body p").fadeOut(500);
			$("#content_iframe").show();
		});
		 
		 
		 
	  });
	  
	$("#shirts").change(function(){
		
		reSize()
		
	 });


