function displaySpecialOffersForPage(pg){
	var category = $("#category").val();
	
	$.get("special_offers_ajax_display_special_offers_for_page.php", {category:category, pg:pg}, function(data){
		$("#special-offers").html(data);
	});
}

function displaySpecialOffer(id){
	$.get("special_offers_ajax_display_special_offer.php", {id:id}, function(data){
		$("#special-offer").html(data);
	});
}
