 $(document).ready(function(){
    var refreshId = setInterval(function(){
	$('div#ourShopsBox .item').fadeOut("slow", function() {
		$('div#ourShopsBox .item').load('/serve_resource.php?box=ourShopsBox', function() {
			$('div#ourShopsBox .item').fadeIn("slow");
		});
	});
	$('div#flierBox').load('/serve_resource.php?box=flierBox');
	$('div#partnersProductsBox').load('/serve_resource.php?box=partnersProductsBox');
    }, 7500);
 });
