/* Universal JS */
var $body;
$(function() {
	$body = $('body');
	
	$body.removeClass('noJS');
	
	//$('head').append('<script type="text/javascript" src="js/jquery-1.3.2.js"></script>');

	
		$('li.firstlink').bind('mouseenter', function(){$('ul.drop', this).css('display', 'block');});
		$('li.firstlink').bind('mouseleave', function(){$('ul.drop', this).css('display', 'none');});

       
//    	$('#client_img img').ifixpng();
       setInterval('client_img()',3000);  
         
});

     
   function client_img() {  
	var current = $('#client_img a.show');  
	var next = current.hasClass('last') ? $('#client_img a.first') : current.next();
	current.removeClass('show').animate({opacity: 0.0}, 500, function() {
		next.addClass('show').animate({opacity: 1.0}, 500);
	});     
   }
