jQuery(function(){
	var n= (jQuery(".hidden").width())/200;
	n = n - (n%1);	
	
	jQuery(".gal").jCarouselLite({
		auto: 1400,
		speed: 1100,
		visible: n
	});
	
	$("a.scroll").click(function() {
        	var anc = $(this).attr("href").substring(1);
        	$("html:not(:animated)"+( ! $.browser.opera ? ",body:not(:animated)" : "")).animate({scrollTop: 			$("a[name="+anc+"]").position().top});
       		return false;
	});
});

jQuery(document).ready(function() {
	jQuery('.gal img').hoverpulse();
	jQuery('#slider').coinslider();
	$("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	500, 
		'speedOut'		:	200,
		'titlePosition'	:	'inside'
	});
});

$(function(){
	$('.menu li').hover(function(){
			$(this).stop().animate({marginLeft:"20px"}, 300);
		},
		function(){
			$(this).stop().animate({marginLeft:"0"}, 300);
		});
	$(".trt td").mouseover(function () {
		$(this).parent().css("background-color","#e9e9e9");
	});
	$(".trt td").mouseout(function () {
		$(this).parent().css("background-color","#fff");
	});
	$('a.basket').click(function() {
		$('#basket').load(this+' #basket');
		$(this).replaceWith("<strong>Заказано!</strong>");
		return false;
	});
});
