$(document).ready(function(){
$("#cart").load("/cart/check.php");
$("li.n").hover(
	  function () {
		$(this).addClass("hover");		
	  },
	  function () {
		$(this).removeClass("hover");
	  }
);
$(".add_cart").click(function(){
var seo = $(this, ".add_cart").attr("id");
//alert(seo);
$.get("/cart/set_cookie.php", {seo: seo}, function(data){
	alert("Товар добавлен в корзину");
	$("#cart").load("/cart/check.php");
});	
});	
$('.text').find('td').addClass('ctd');
$('.text').find('tr').addClass('n');

$(function() {
    if($(window).width()<1500) {
    if($('#img').width()>600) {     
        //var width = $('#img').width();
        //alert(width);
        $('#img').css('width', '600px');
        }
    }
});

$('#photos').galleryView({
			panel_width: 800,
			panel_height: 300,
			frame_width: 100,
			frame_height: 38,
			transition_speed: 1200,
			background_color: '#222',
			border: 'none',
			easing: 'easeInOutBack',
			pause_on_hover: true,
			nav_theme: 'custom',
			overlay_height: 52,
			filmstrip_position: 'top',
			overlay_position: 'top'
});
$("#next").click(function(){
			$("#goods").slideUp('slow');
			$("#order_form").show('slow');
		});
		$("#back").click(function(){
			$("#order_form").slideUp('slow');
			$("#goods").show('slow');
		});
});
