// JavaScript Document

function show_message(html)
{
	$('body').append('<div id="dialog" align="center"></div>');
	$('#dialog').html(html);
	$('#dialog').dialog({title: "Message",
						resizable: false,
						modal: false
						});

}


hs.graphicsDir = "http://" + document.domain+"/scripts/highslide/highslide/graphics/";
hs.outlineType = 'rounded-white';
hs.wrapperClassName = 'draggable-header';
hs.align = 'center';



function explore_menu(id)
{
 $('#id_'+id + ' ul:first').each(function(){$(this).toggle('slow');});
}

function explore_category(id)
{
 $('#cat_id_'+id + ' ul:first').each(function(){$(this).toggle('slow'); });	
}

   

$(document).ready(function($){
	
	$("#main_menu_container").css({'z-index':'1'});					   
	$("#main_menu_container .menu_item").hover(
		function(){
			var w =$(this).width();
			$(this).children("ul").fadeIn(50);
			$(this).children("ul").css({'min-width':w});
			},
		function(){
			$(this).children("ul").fadeOut(50);
		}
	); //end hover
	
	$("#main_menu_container ul li").hover( 
		function(){
			var w =$(this).width();
			$(this).children("a").width(w-60);
			$(this).children("ul").css({'left': w, 'top':'0','position':'absolute'}).fadeIn(50);},
		function(){
			$(this).children("ul").fadeOut(50);
		}
	); //end hover
	
	$('.tree li.folder ul').addClass("colapsed");
	
	$('#adv_photos').cycle({fx: "fade"});

})
//end document.ready
