function getRandom(){
	$.ajax({
			type: "POST",
			url: "/shop/random/?api=",
			success: function(msg){
				$(".contentRightTopRandom").html(msg); 
			}
	}); 
	setTimeout("getRandom();",5000);
	return false;
}

$(document).ready(function(){
	
	if ($(".contentRightTopRandom").length > 0) getRandom();
	
	$(function() {
		$('.extraSlike a').lightBox();
	});
	
	$(function()
	{
		$('#siteContentRight').jScrollPane();
	});
	
	
	$(".shopPictogram").click(function(){
		var target = $(this).attr("target");
		$('#siteContentRight').animate({top: -$('#'+target).offset().top+80},'slow',function(){$('#siteContentRight').jScrollPane();});
	});
	
	
	$(".contentRightTopRandom").html('<?=$randomItem["title"]?>'); 
	
	
	
});

