//<![CDATA[
$(document).ready(function() {
	$('a.delete').click(function() {
		if (jQuery(this).attr('title').indexOf("el ") > -1)
			return confirm('\u00BFDesea borrar '+jQuery(this).attr('title')+' seleccionado?');
		else
			return confirm('\u00BFDesea borrar '+jQuery(this).attr('title')+' seleccionada?');
	}); 
	if($.fn.fancybox) {	
		$("a.fancybox").fancybox({ 'overlayShow': true, 'zoomSpeedIn': 300, 'zoomSpeedOut': 300 });
	}
	$('a[rel="external"], a.external').click( function() {
		this.target = "_blank";
	});
	$('#language-selector').hover(function() {
		$(this).css('background-position', 'bottom left');
		$('#language-selector ul').css('display', 'block');
	}, function() {
		$(this).css('background-position', 'top left');
		$('#language-selector ul').css('display', 'none');
	});
});
//]]>	 