﻿$(function(){
    // Category with shops:
	$(".linkShopBox").click(function(){
   		// $(this).hide();
		if($.browser.msie){
			$(".ShopBox", $(this).parent()).show("slow");
		} else {
			$(".ShopBox", $(this).parent()).show("slow");
   		return false;
		}
 	});
	
	$(".ShopBox .close").click(function(event){
		event.preventDefault();
   		$(this).parent().hide(function(){$(".linkShopBox", $(this).parent()).show();});
 	});
});
