$(document).ready(function(){

	//rel="external"
	$('a[rel="external"]').click(function(){
     this.target = "_blank";
	});


    //sidebar animación
	$("#sidebar li:not(.active) a").hover(
		function () {
			$this = $(this);
			$this.stop().animate({
				paddingLeft : '24px'
			}, {queue:false,duration:300});
		},
		
		function () {
			$this = $(this);
			$this.animate({
				paddingLeft : '12px'
			}, {queue:false,duration:300});
		}

	);


	//deslizamiento a #
	$("a.scrollLink").click(function() {
		$("html, body").animate({
			scrollTop: $($(this).attr("href")).offset().top + "px"
		}, {
			duration: 800,
			easing: "swing"
		});
		return false;
	});

	
	//opacidad imagenes trabajos
	$(".webimg img").fadeTo("slow", 0.8); // This sets the opacity of the thumbs to fade down to 60% when the page loads
    $(".webimg img").hover(function(){
        $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
    },function(){
        $(this).fadeTo("slow", 0.8); // This should set the opacity back to 60% on mouseout
    });
});


