$(document).ready(function() {

	$('div#brand-section ul').jScrollPane();
	$('div#category-section ul').jScrollPane();
	
	$('#container-client-top').shuffle();
	//$('#container-client-btm').shuffle();
	$('#container-client-top img').fadeTo('slow', .5)
	$('#container-client-top img').hover(
		function() {
			$(this).stop().fadeTo('slow', 1);
		},
		function() {
			$(this).stop().fadeTo('slow', .5);
		});
	$('#brand-section .jspContainer').hover(function(){
		$('#brand-section .jspContainer .jspTrack .jspDrag').animate({opacity: .85}, 'fast');
	}, function(){
		$('#brand-section .jspContainer .jspTrack .jspDrag').animate({opacity: .1}, 'fast');
	});
	$('#category-section .jspContainer').hover(function(){
		$('#category-section .jspContainer .jspTrack .jspDrag').animate({opacity: .85}, 'fast');
	}, function(){
		$('#category-section .jspContainer .jspTrack .jspDrag').animate({opacity: .1}, 'fast');
	});
});

