function iniMods(){
	var productText = new Array("Video Production","Web Development","Performance Marketing","About Us", "Contact Us");
	var productImage = new Array("url(images/video-prod.gif)","url(images/webdev.png)","url(images/marketing.png)","url(images/aboutus.jpg)","url(images/contactus.png)");
	var text = document.getElementsByTagName("h1")[0].innerHTML;
	var image = document.getElementById('product').style;
	image.backgroundImage = "url(images/product-bkg.png)";

	for(i=0; i<productText.length; i++){
		if(text.match(productText[i])){
			image.backgroundImage = productImage[i];	
		}
	}
}


