$(document).ready(function(){
	$('.openPanel a').unbind("click").click(function(){
		$($(this).attr("href")).show();
		return false;
	});
	$('.closePanel a').click(function(){
		$(this).parents('.panelBlock').hide();
	});

	if ($('body').hasClass('superbazaar')) {
		$("#bazaarShop").each(function() {
			var tabs = $(this).find("ul#tabButtonList li a");
			var panels = $(this).find('> div.shopLinkBlock');
			panels.addClass('panel').filter(":not(" + tabs.filter('.selected').attr('href') + ")").hide();
			tabs.unbind('click').click(function (){
				tabs.each(function() {
					if($(this).hasClass('selected')) {
						var img = $(this).find('img');
						img.attr('src', img.attr('src').replace(/_o(\.gif|\.jpg|\.png)/, "$1"));
						
					}
					$(this).removeClass('selected');
				});
				
				var img = $(this).find('img');
				$(this).addClass('selected');
				img.attr('src', img.attr('src').replace(/(\.gif|\.jpg|\.png)/, '_o$1'));
					
				panels.hide();
				$(panels.filter($(this).attr('href'))).show();
				return false;
			});
		});

		$('#visual').empty().media({
			src: 'images/visual_superbazaar.swf',
			width: 780,
			height: 287
		});
	}
	
	
	// popupProductArea
	$('.buttonSellLink').show();
	$('.buttonSellLink a').click(function() {
		$($(this).attr('href')).show();
		
		return false;
	});
	$('#popupProductAreaClose a').unbind('click').click(function() {
		$($(this).attr('href')).hide();
		return false;
	});
	$('#closeCategoryArea a').unbind('click').click(function() {
		$($(this).attr('href')).hide();
		return false;
	});
	
	
});

