// initialise plugins
jQuery(function(){
	jQuery('ul.sf-menu').superfish();
});

//detectar tecla
function getKeyCode(e)
{
e= window.event || e;
return (e.keyCode || e.charCode);
}
//
/*lost psw*/
$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a.compartir").colorbox({innerWidth:'620px'});
});
/*EOF lost psw*/

/*Tooltips */
$(document).ready(function() {
	$("#bottom .imagen").tooltip({effect: "slide", offset:[25, 0]});
});
