$(document).ready(function(){
	
	/* SUB MENUS */
	var zIndex = 2;
	$("#menu ul li").hover(
		 function(){
			 if($(this).children('ul:eq(0)').is(':hidden')){
				  $(this).children('ul:eq(0)').css('z-index',zIndex++).slideDown('normal');
			 }
		 },
		 function(){
			 if($(this).children('ul:eq(0)').is(':visible'))
				  $(this).children('ul:eq(0)').slideUp('normal');
			 }
	);
	//highlight main button
	$("ul ul li.current_buttonID").parents('li').find('a:eq(0)').addClass('current_buttonID');
	
	//kill emtpy stuff
	$(".article,.title").each(function(){
		if(!$.trim($(this).text()) && !$(this).find('img').length){
			$(this).remove();
		}
	});
	
	//hide blank br
	$(".article .content .module_contents").each(function(){
		if($(this).prev('br').length == 1){
			$(this).prev('br').remove();
		}
	});

	//change margins of every image
	$(".article div.content img[align]").each(function(){
		if(!$(this).next().is("img[align=" + $(this).attr('align') + "]") && $(this).attr('hspace')){
			$(this).css('margin-' + ($(this).attr('align') == 'left' ? 'right' : 'left'), $(this).attr('hspace') + 'px').removeAttr('hspace');
		}
	});

});

