$(document).ready(function() {

	//navigation ( selects )
		menu1 = document.getElementById("menu_1");
	
		menu1.onchange=function(){
			targetURL = this.options[this.selectedIndex].text.replace(/ /g,"-");
			location.href = "http://www.guillermobrotons.com/"+targetURL;
		}
		
		menu2 = document.getElementById("menu_2");
	
		menu2.onchange=function(){
						targetURL = this.options[this.selectedIndex].text.replace(/ /g,"-");
						location.href = "http://www.guillermobrotons.com/work/"+targetURL;
		}

	
	//jquery curly
	//$('#curly').fold()
	
	//Solo añadimos el slider en los posts de WORK
	$(".s-category-work .entry-content img").wrap("<li><a href=#></a></span></li>");
	$(".s-category-work .entry-content li").wrapAll("<div id='slider'><ul></ul></div>");
	$("#slider a").css("cursor","default");
	$("#slider").easySlider({
		orientation:'horizontal',
		speed:500
	});
	
	$(".s-category-work .entry-content span").appendTo("#work-nav");
	    
});





