function showSwitcherTab(idRef) 
{
	if (idRef == "sw-tab4") { window.location = "/shop/login"; return; } else {
		$('#switcher .sw-menu li').removeClass('selected');
		$('#switcher .sw-menu li').each(function() {
			if ($(this).find('.inner a').attr('rel') == idRef)
				$(this).addClass('selected');
		});
		$('#switcher .sw-content .tab').not('#switcher .sw-content #'+idRef).fadeOut(100, function(){ $('#switcher .sw-content #'+idRef).fadeIn(500); });
	}
}

$(document).ready(function() {
	var defaultTab = 'sw-tab1';
	$(window).load(function(){	
		$('#switcher .sw-content .tab, #switcher .sw-content .tab-cover').hide(); showSwitcherTab(defaultTab); 

		$('#form-submit').click(function() { $('#form-contact_submit').click(); });

	});
	$('#switcher .sw-menu li').click(function(){ 
		var clickedId = $(this).find('.inner a').attr('rel'); 
		showSwitcherTab(clickedId);
	});

});
