// enlaza esta anotacion
function SelectAll(id) {
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

// configuracion para jquery
$(function() {
	$("div.scrollable").scrollable({ /* scroll header */
		size: 6,
		steps: 6,
		loop: true,
		speed: 250,
		autoplay: true,
		keyboard: false,
		nextPage: ".next",
		prevPage: ".prev"
	}).circular().autoscroll({ 
	    steps: 6,
	    interval: 15000
	});
	$("div.scrollable2").scrollable({ /* scroll sidebar */
		vertical: true,
		size: 4,
		steps: 4,
		loop: true,
		speed: 250,
		autoplay: true,
		keyboard: false,
		nextPage: ".nextPage",
		prevPage: ".prevPage"
	}).circular().autoscroll({ 
	    steps: 4, 
	    interval: 5000         
	});
	$("ul.tabs").tabs("div.panes > div"); 
	$("a.comments_politic_button").overlay({ 
		expose: {
			top: 'center',
			left: 'center',
			color: '#fff',
			speed: '2000',
			fadeInSpeed: 'fast',
			opacity: 0.75,
			closeSpeed: 50,
			closeOnClick: false
		}
	});
	$("a.mas-hipertextual-boton").overlay({ 
		expose: {
			top: 'center',
			left: 'center',
			color: '#fff',
			speed: '2000',
			fadeInSpeed: 'fast',
			opacity: 0.75,
			closeSpeed: 50,
			closeOnClick: false
		}
	});
	$("a.login-boton").overlay({ 
		expose: {
			top: 'center',
			left: 'center',
			color: '#fff',
			speed: '2000',
			fadeInSpeed: 'fast',
			opacity: 0.75,
			closeSpeed: 50,
			closeOnClick: true
		}
	});
	$('a#open-more').click(function() {
		$('#mas-hipertextual-header').toggle("slow");
		return false;
	});
});


//fuck framing!
if (top.location!= self.location) { top.location = self.location.href }
