$(function () {

	/************
	** IDIOMAS **
	************/
	$(".idiomas").hover(
		function () {
			$(this).clearQueue().animate({
				"marginLeft": -280 + $(this).width() * -1
			}, 500);
		}, 
		function () {
			$(this).clearQueue().animate({
				"marginLeft": -305
			}, 500);
		}
	);
	
	/**************
	** SLIDESHOW **
	**************/
	$(".ambienteSlideshow").cycle();
	
});

