$(function(){
	$.preload([ 'home02', 'aempresa02', 'ambientes02', 'materiais02', 'acabamentos02', 'dicasecuidados02', 'orcamento02' ], {
		base:'/images/',
		ext:'.jpg'
	});
});
$(window).load(function(){
	lastBlock = $("#home");
    maxWidth = 681;
    minWidth = 43;	

    $("ul.nav a.item").click(function(){
		open_tab($(this));
		$('.main', $(this).parent()).load("/"+$(this).parent().attr("id")+"/index.php?ajax=true", function(){
			triggers();
		});
		location.hash = "#/"+$(this).parent().attr("id");
		_gaq.push(['_trackPageview', $(this).attr("href")]);
		return false;
    });
	$(".back").click(function(){
		$id = $("#"+$(this).attr("section"));
		$("ul.nav "+$id+" a").trigger('click');
	});
	if (location.hash) {
		bind_hash();
	}
	$(window).bind('hashchange', function() {
		bind_hash();
	});
	triggers();
	$('.addtofaves').jFav();
});
function open_tab (tab) {
	$('.content01').html('').hide();
    $(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
	$('.main', lastBlock).html('');
	tab.parent().animate({width: maxWidth+"px"}, { queue:false, duration:400});
	lastBlock = tab.parent();
}
function bind_hash () {
	var hash = location.hash.substr(2).split("?");
	var split = hash[0].split("/");
	var ndclick = split[1];
	if (ndclick) {
		open_tab($("a", "#"+split[0]));
		subsection(split[0], split[1], "/"+split[0]+"/"+split[1]);
	}
	else { $("a", "#"+split[0]).trigger('click'); }
}	
function triggers () {
	$("ul.catalogo.index li a").click(function(){
		$('.main').html('');
		subsection($(this).attr("section"), $(this).attr("id"), $(this).attr("href"));
		return false;
	});
	$('.dicas').accordion({ header: '.topic', autoHeight: false, collapsible: true, active:false });
	$('#slideshow').cycle({ fx: 'fade' });
	$("#form").validate();
}
function subsection (section, id, href) {
	$('.main').load("/"+section+"/"+id+"/index.php?ajax=true", function(){ $('ul.catalogo.list a').lightBox({txtImage: '', txtOf: 'de'}); });
	location.hash = "#/"+section+"/"+id;
	_gaq.push(['_trackPageview', href]);
}
