// JavaScript Document
$(document).ready(function(){
		$('#pane1,#pane2,#pane3').jScrollPane({scrollbarWidth:20, scrollbarMargin:10});
	
	
			$("#slider").easySlider({
				auto: true, 
				continuous: true
			});
			
			$('#photos').galleryView({
			panel_width: 800,
			panel_height: 300,
			frame_width: 100,
			frame_height: 100
		});
/*	$('#menu a')
	.css( {backgroundPosition: "0px -94px"} )
	.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:400})
	})
	.mouseout(function(){
		if($(this).attr("id") != "active"){
		$(this).stop().animate({backgroundPosition:"(0px -94px)"}, {duration:200, complete:function(){}
		})
		}		
	});
	
	$('#menu a').each(function(i){
		if($(this).attr("id") == "active"){
			$(this).css( {backgroundPosition: "0px 0px"} );
		}					   
	});
	*/


	
	
/*$(".menu_verde").hover(
	function(){
		$(".a_verde").stop(true,false).animate({top:0},400);	 
	}, 
	function(){
		$(".a_verde").stop(true,false).animate({top:20},400);		
	}
);
*/	


});


