function fashion_reset() {
	$jq("#fashion_content").fadeIn();
	$jq('#store_info').fadeOut();
} 

$jq(document).ready(function(){
	//References
	var sections = $jq("#fashion_menu li"),
		fashion_content = $jq("#fashion_content"),
		store_content = $jq('#store_info'),
		ajax_prefix = '/category/cat26590731/';
		
	function switcher(thePage) {
		if (thePage) {
			fashion_content.css({'display' : 'none'});
			store_content.load(ajax_prefix + thePage + ".html", function(){ 
				store_content.fadeIn(); 
			});
		} else {
			fashion_content.fadeIn();
			store_content.fadeOut();
		}
	}

    $jq.history.init(function(url) {
		if (url != 'fashion' && url != '') {
        	switcher(url == '' ? '' : $jq('a[href="#' + url + '"]', sections).parent('li').attr('id'));
		} else {
			switcher()
		}
    });
	
	//Manage click events
	sections.click(function(){
		switcher(this.id);
	});
});
