jQuery.noConflict();
jQuery(document).ready(function(){
	Cufon.replace('#header p#about', {fontFamily: 'Qlassik Medium', hover: true});
	Cufon.replace('ul#items p.title, #body2 #wrapper #title_izq, #body2 #wrapper #title_der', {fontFamily: 'Qlassik Bold', hover: true});
	//Cufon.replace('#destacados, .storytitle, h3 span#comments, #respond h3, .side-box h3', {fontFamily: 'Comfortaa', hover: true});
	
	var toggle = jQuery("#toggle");
	var header = jQuery("#header");
	toggle.click(function(event){
		if (header.is(":hidden")){		
			toggle.animate({backgroundPosition: "0 -23px"});
			header.animate({height:"109px"}, {duration: 600, easing: "easeInOutQuint"});
			//header.slideDown("slow");
		}
		else{
			toggle.animate({backgroundPosition: "0 0"});
			header.animate({height:"0"}, {duration: 600, easing: "easeInOutQuint"});
			//header.slideUp("slow");
		}
		event.preventDefault();
		event.stopPropagation();
	});
	
	jQuery('.galleryImage').hover(
		function(){
			jQuery(this).find('.imagen').animate({marginTop:-180}, 400);
			//jQuery(this).find('img').animate({width:50, height:50, marginTop:10, marginLeft:10}, 400);
		},
		function(){
			jQuery(this).find('.imagen').animate({marginTop:0}, 200);
			//jQuery(this).find('img').animate({width:180, height:180, marginTop:0, marginLeft:0}, 200);
		}
	);	
});
