$(document).ready(function() {
	move_hand.go("ahora");
	$(window).resize(move_hand.go);
	
	$('a.showv').click(function(){
	    $(this).next().slideToggle();
	    return false
	});
	$('a.showt').click(function(){
	    $(this).next().slideToggle();
	    return false
	});
});
move_hand = {
	go:function(ya){
		this.viewportWidth = $(window).width();
		if (this.viewportWidth <= "1009") {
			if(ya=="ahora"){
				$("div#hand").css("left", "-80px");
				
			}else {
				$("div#hand").animate({"left": "-80px"});
				
			}
		} else {
			if(ya=="ahora"){
				$("div#hand").css("left", "0px");
				
			}else {
				$("div#hand").animate({"left": "0px"});
				
			}
		}
	}	
} 
