/* jQuery lightBox plugin - Gallery style */


jQuery(document).ready(function(){
    jQuery("a[rel=example_group]").fancybox({
    				'transitionIn'		: 'none',
    				'transitionOut'		: 'none',
    				'titlePosition' 	: 'over',
    				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
    					return '<span id="fancybox-title-over">Фото ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
    				}
    });
    
});




function Add_to_Cart(id){ 
    
    jQuery.post('/cart?com=addtocart&id='+id, function(data) {
      if(data == 'true'){
        alert('Товар добавлен в корзину!');
        $('#basket_top').html(parseInt($('#basket_top').html()) + 1);
      }
    });
}

function delete_goods(id){
    location.href='/cart?dele='+id;
}

function send_order(){
    orderform_submit.submit();
}
