$(function(){
// redondeado
	$('.div760').corner();
//
// scroll suave
	$.scrollTo.defaults.axis = 'y';//scroll horizontally
	$.scrollTo.defaults.duration = 1500;//the speed
	
	$('.abajo').click(function(){
		$.scrollTo( '2600' );
	});
	$('.irarriba').click(function(){
		$.scrollTo( '0' );
	});
	
// FOTOS HEAD (no anda bien)
/*	$('#fotos').cycle({ 
		fx:      'fade', 
		random:   1,
		next:	 '#fotos',
		speed:    1000,
		timeout:  2000 
	});
*/
// MENU botones bg anim
	// set opacity to nill on page load
	$("ul#botones span").css("opacity","0");
	// on mouse over
	$("ul#botones span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
			}, 'slow');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
			}, 'slow');
	});
	$("#menu a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-47"}, 500);
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-55"}, "fast");
	});

//		
});