// JavaScript Document
$(document).ready(function(){
		
		
		
		
	var col_li = $(".nonImageContent .carusel .brands_list li").length;
	/*if (col_li > 8) {
		$("button.prev").css('backgroundImage','images/1.gif');
		$("button.next").css('background-image','images/1.gif');
		col_li = 8;
		} */
	
		

		$(function() {
			$(".nonImageContent .carusel").jCarouselLite({
				btnPrev: ".nonImageContent .next",
				btnNext: ".nonImageContent .prev",
				visible: 8

			});
		});
		

    $(".nonImageContent .carusel img.img_d").hover(
		function(){							
			
			  $(".active").removeClass("active");			  
			  $(this).next('div.img_hover').animate({height: 'show', width: 'show', opacity: 'show'}, '200');;
			  $(this).next('div.img_hover').stop(true, true)
			}
	 );			
			
		$(".nonImageContent .carusel div.img_hover").hover( 
		function() {},
		function(){	
			$(this).fadeOut(150);
		 });
				
		
});


