// JavaScript Document
var jQ= jQuery.noConflict();
jQ(document).ready(function($) {
	/* home page head image fade-in-out */
	$(document).pngFix();
	jQ('#heroimages').innerfade({ 
		speed: 1000,
		timeout: 5000,
		type: 'random',
		containerheight: '335px' 
	});
});
	 


//autoFill($(".searchinbox"), "Search...");
//function autoFill(el, v){ //function> hide and show text in search text box
	//$(el).css({ color: "#ffffff" }).attr({ value: v }).focus(function(){
	//	if($(this).val()==v){
	//		$(this).val("").css({ color: "#ffffff" });
	//	}
	//}).blur(function(){
	//	if($(this).val()==""){
	//		$(this).css({ color: "#ffffff" }).val(v);
	//	}
	//});
//}

