$(document).ready(function () {
	$('#add_to_cart').removeAttr('onclick');
	
	$('#add_to_cart').click(function () {
    	all_options_selected = true;
		$('#product select :selected').each (function(i, select) {
			if ($(select).val() == '') {
		    	event.stopImmediatePropagation();
		    	all_options_selected = false;
		    }
		});
		if(all_options_selected){
			$.ajax({
				type: 'post',
				url: 'index.php?route=module/cart/callback',
				dataType: 'html',
				data: $('#product :input'),
				success: function (html) {
					$('#ajax_cart').html(html);
					$('#module_cart .toggler').fadeIn("slow",function(){
						setTimeout("$('#module_cart .toggler').fadeOut('slow');",700);
					});
					$('#module_cart .number_of_products').html($('#ajax_cart table tr').size());
				}		
			});	
		}
	});		
		
	$('.add_to_wishlist_from_cat').click(function () {
    	$('#wish_list_form .product_id').val($(this).closest('.product_sports').find('.product_id').val());
		$.ajax({
			type: 'post',
			url: 'index.php?route=module/wishlist/callback',
			dataType: 'html',
			data: $('#wish_list_form :input'),
			success: function (html) {
				$('#ajax_wishlist').html(html);
				$('#module_wishlist  .toggler').fadeIn("slow",function(){
					setTimeout("$('#module_wishlist .toggler').fadeOut('slow');",700);
				});
				$('#module_wishlist .number_of_products').html($('#ajax_wishlist table tr').size());
			}		
		});	
	});			
});
