// JavaScript Document
//$(document).ready(initArtista());

function initArtista(){
	
	location.href="#";
	
	$(".btBaixarPDF").hover(
	
		function() {
			
			$(this).animate({"background-color": cor2}, 300);
			$(this).children('.setabtBaixarPDF').children('span').animate({"left": "28"}, 300);
			$(this).css("color", cor1);
			Cufon.replace('.fonte500', {hover: true, fontFamily:"Museo500"});
			Cufon.replace('.fonte700', {hover: true, fontFamily:"Museo700"});
			
		},
	
		function() {
			
			$(this).animate({"background-color": cor4}, 300);
			$(this).children('.setabtBaixarPDF').children('span').animate({"left": "25"}, 300);
			$(this).css("color", cor2);
			Cufon.replace('.fonte500', {hover: true, fontFamily:"Museo500"});
			Cufon.replace('.fonte700', {hover: true, fontFamily:"Museo700"});
			
		}
	
	);

}
