// JavaScript Document

jQuery(document).ready(function(){
	
	resizeHero();
	
	window.onresize=function(){
			resizeHero();
		}
		
		//$("#tempContainer").append($.URLEncode("<strong> </strong>"))
		
});

function resizeHero(){
	var winWidth=$(window).width()-70;
	
	jQuery("#titleImg").css({width:winWidth+"px"});
}

function changeSize(){
		jQuery("#titleImgContainer").toggleClass("nonHome");
	}
	
function changeImg(imgs){
		jQuery("#secTitle img").attr("src", imgs);
	}
