$(document).ready(function(){
	$("ul.botons li").hover(function() {
		$(this).css({'z-index' : '10'});
		$(this).find('img').addClass("hover").stop()
			.animate({
				marginTop: '-10px',
				marginLeft: '-10px',
				top: '0%',
				left: '0%',
				width: '145px',
				height: '140px'
			}, 200);
			/*
			var options = { to: {width: 15,height: 130} };
			$(this).find('.titol').toggle('fold',options,500);*/

		} , function() {
		$(this).css({'z-index' : '0'});
		$(this).find('img').removeClass("hover").stop()
			.animate({
				marginTop: '0',
				marginLeft: '0',
				top: '0',
				left: '0',
				width: '120px',
				height: '120px'
			}, 400);
			/*
			var options = {};
			$(this).find('.titol').toggle('fold',options,500);*/
	});

	$("#promocions").showcase({
		css: { width: "260px", height: "568px" },
		animation: { type: "vertical-slider",
			interval: 7500,
            stopOnHover: true,
            easefunction: "swing",
            speed: 900 },
	    titleBar: { enabled: false },
	    navigator: {
	    	autoHide: true,
	        css: { padding:"0px",
	               margin: "1px 1px 1px 1px" },
	        item: {
	            css: {  height:"16px",
	                    "line-height":"16px",
	                    width:"16px",
	                    "-moz-border-radius": "0px",
	                    "-webkit-border-radius": "0px",
	                    backgroundColor: "#969594",
	                    borderColor:"#FFFFFF",
	                    margin: "0px",
	                    "text-align": "center",
	                    "vertical-align": "middle" },
	            cssHover: {
	                backgroundColor: "#CCCCCC",
	                borderColor: "#FFFFFF" },
	            cssSelected: {
	                backgroundColor: "#5D5B59",
	                borderColor: "#FFFFFF" }
	        }
	    }
	});

	$('#galeriaFotos1').galleryView({
		panel_width: 620,
		panel_height: 440,
		frame_width: 87,
		frame_height: 62,
		transition_speed: 1200,
		overlay_height: 80,
		border: 'none',
		pause_on_hover: true,
		nav_theme: 'light',
		filmstrip_position: 'top',
		overlay_position: 'bottom'
	});

	// Add Scroller Object
	  $jScroller.add("#scroller_container","#scroller","up",1,true);

	  // Start Autoscroller
	  $jScroller.start();

});