$(document).ready(function(){
	/*setInterval( "slideSwitch()", 5000 );*/
	$("ul.leftmenu a").hover(function() {
		$(this).parent().addClass('hover');
	}, function() {
			$(this).parent().removeClass("hover");
	});
});



function popupFoto(foto, width, height) {
	if (!foto)
		return false;
		
	window.open(foto, 'FotoWindow', 'location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no, left=10, top=10, width='+width+', height='+height);
}
