

 jQuery(document).ready(function() { 

      jQuery(".main-nav ul").css({display: "none"}); // Opera Fix 

      jQuery(".main-nav li").hover(function(){ 

              jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).show(300); 

              },function(){ 

              jQuery(this).find('ul:first').css({visibility: "hidden"}); 

              }); 

      }); 






	var $j = jQuery.noConflict();
		 $j(document).ready( function(){
		
						$j('#tabss').tabs({ fxFade: true, fxSpeed: 'fast' });
				
				 		$j('#slider1').s3Slider({timeOut: 6000, containerheight: '350px' });
				 	   	$j("#news-ticker").fadeTo("slow", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
		   				$j("#news-ticker").hover(function(){
		   				$j(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		   				},function(){
		   				$j(this).fadeTo("slow", 0.5); // This should set the opacity back to 30% on mouseout
			   	
		 

	
				   });
				});
				
		
	
	
	







	