 function mainmenu(){
jQuery("#nav ul ul ").css({display: "none"}); // Opera Fix
jQuery("#nav ul li").hover(function(){
jQuery(this).addClass('active');
		jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).show(600);
		},function(){
		jQuery(this).removeClass('active');
		jQuery(this).find('ul:first').css({visibility: "hidden"});
		});}


	   $(document).ready(
				function(){
					
				mainmenu();	        
         
			 $('.fadder').innerfade({
			 speed: 1000,
			 timeout: 5000,
			 type: 'random'						
			 }); 
					
					
					
						$('.fadder-side').innerfade({
						speed: 500,
						timeout: 5000,						
            height: '189px'						
					});
					   
		
		 $('#mycarousel').jcarousel({
    	wrap: 'circular',
    	 buttonNextHTML: null,
       buttonPrevHTML: null,
       auto: 2 ,
       animation: 2000,
       scroll:2
    });
          
          
        
					   
             					   				

  });
 

function clear_textbox()
{
var box = document.getElementById('search-field');
if (box.value == "Search Site...")
{
box.value = "";
box.style.fontStyle = "normal";
box.style.color = "Black";
}
}

function fill_textbox()
{
    alert(box.value);
 if (box.value == ""){

var box = document.getElementById('search-field');
box.value = "Enter Email...";
box.style.fontStyle = "italic";
box.style.color = "#999999";
                      }

}




