$(document).ready(function() {
	$('body').supersleight();
	$(window).load(
		function() {
			$('#right').animate({width:  '300'},3000,'easeOutBounce');
		}
	);
	$("a.grouped_elements").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});

	$('.hover a').hover(function(){
			var e = $(this).find("img");
			$(e).attr('src','/client/assets/images/_menu/on/' + e.attr('id') + '.png');
		},function(){
			var e = $(this).find("img");
			$(e).attr('src','/client/assets/images/_menu/off/' + e.attr('id') + '.png');
		});
		
	$(".scroll").jScrollPane({scrollbarWidth:15, scrollbarMargin:20,dragMaxHeight:63}); 
	
	//$("#coupons_link").click(function(){
	//	setTimeout(window.location='/coupons/download', 2000);
	//	//alert('here');
	//});
});
