$(document).ready(function() {
	$('#homeProductsList').load('/index/bestsellers');
});

$('.bookmarkBestsellery a').livequery('click', function() {

	$('#homeProductsList').load('/index/bestsellers');
	$('#homeProductsListTabs a').removeClass("active");
	$('#homeProductsListTabs a').addClass("unactive");
	$(this).addClass("active");

	return false;
});

$('.bookmarkNowosci a').livequery('click', function() {
	var id = $(this).attr("rel");
	var clicked = $(this);
	$.ajax({
		   type: "GET",
		   url: "/index/latests",
		   success: function(result){
		   		$('#homeProductsList').html(result);
		   			$('#homeProductsListTabs a').removeClass("active");
					$('#homeProductsListTabs a').addClass("unactive");
		   		clicked.addClass("active");
		   }
	});
	return false;
});

$('.bookmarkPromocje a').livequery('click', function() {
	var id = $(this).attr("rel");
	var clicked = $(this);

	$.ajax({
		   type: "GET",
		   url: "/index/promotions",
		   success: function(result){
		   		$('#homeProductsList').html(result);
		   			$('#homeProductsListTabs a').removeClass("active");
					$('#homeProductsListTabs a').addClass("unactive");
					clicked.addClass("active");
		   }
	});
	return false;
});
