// JavaScript Document
function inithome(){
	
	//console.log('inithome');
	
	$('#abreColecao').click(function(){;
		currSubPage = -1;
		$('#submenu3').trigger('click');
		
		$('#menu').children('.ativo').each(function(){
			$(this).stop(true, true).children('.coracao_menu').fadeOut(300);
			$(this).stop(true, true).animate({"color": "#f5f0f0"}, 300);
			$(this).toggleClass('ativo');
		});
		
		$('#menu2').stop(true, true).children('.coracao_menu').fadeIn(300);
		$('#menu2').stop(true, true).animate({"color": "#e9f1cb"}, 300);
		$('#menu2').toggleClass('ativo');
	});
	
	$('#abreVideoHome').click(function(){
		
		musicState = ms;
		toggleMusic(0);
		
		$("#videocontent").html('<iframe src="http://player.vimeo.com/video/27348139?title=0&amp;byline=0&amp;portrait=0" width="720" height="405" frameborder="0"></iframe>');
		$("#opaque").fadeIn(300);
		$("#videolightbox").delay(300).fadeIn(300);
	});
	
}
