jQuery(function(){
	if(jQuery(".menu-fotos a").length > 0){
		for(i=0; i<jQuery(".menu-fotos a").length; i++){
			var id = jQuery(".menu-fotos a")[i].id;
		}

		jQuery(".menu-fotos a").click(function(){
			jQuery(".menu-fotos li").removeClass("sel");
			jQuery(this).parent().addClass("sel");
			abreFoto(this.id);
			return false;
		})

		jQuery(jQuery(".menu-fotos a")[0]).click();
	}
})

function abreFoto(foto){
	jQuery("#foto").html('<center><iframe align="center" src="http://www.flickr.com/slideShow/index.gne?set_id=' + foto + '" width="480" height="450" frameBorder="0" scrolling="no"></iframe></center>');
}