var dothis=true;

function rollIn(img){
	document.getElementById(img).src=path+"/images/"+img+"_title_roll.gif" ;
	}
function rollOut(img){
	document.getElementById(img).src=path+"/images/"+img+"_title.gif" ;
	}
	
function change(myinput){
	if (dothis==true){
		myinput.value="";
		dothis=false;
	}
}

$(document).ready(function() {
	
	//$('#drop1').hide();
	
	
	
	$(".rolltitle").hover(
	 function()
	 {	
	this.src =path+"/images/"+this.id+"_title_roll.gif" ;
	 },
	 function()
	 {
		this.src =path+"/images/"+this.id+"_title.gif" ;
	 });
	
	//$("#home").hover(function(){
//	$(".drop",this).slideDown(200); 
//	$("#drop1",this).slideDown(200);
//	 },
//	function(){
//		//$("#drop1 ul li a ").mouseout(function(){
//		$("#drop1",this).slideUp(200);
//	 });
//		
		

	
	

  /*     
     $('#nav li ').hoverIntent(  
         function () {  
             //show its submenu  
             $('ul', this).slideDown(300);  
  
        },   
         function () {  
            //hide its submenu  
            $('ul', this).slideUp(300);           
       }  
    );  
   */   

	
	
	
	
	
	
	
	
	
	
	

});

