jQuery(document).ready(function(){

	$(function() {
	    $('a.lightbox').lightBox({
			imageLoading: 'public/images/lightbox/loading.gif',
			imageBtnClose:'public/images/lightbox/close.gif',
			imageBtnPrev: 'public/images/lightbox/prev.gif',
			imageBtnNext: 'public/images/lightbox/next.gif'
		});
	});

	jQuery.each($('#left-menu .submenu'), function(i, el) {
		if(!$($(el).siblings()[0]).hasClass('selected')) { 
			$(el).hide();
		} 
	});
	
 	jQuery.each($('#left-menu h3'), function(i, el) {
        if($(el).siblings().length > 0){
		if($(el).find('a').attr('href') == 'javascript:;'){
        	$(el).bind('click', function(){
        		jQuery.each($('#left-menu .submenu'), function(i, el) { $(el).hide('normal'); });
				$($(el).siblings()[0]).show('normal');
				
        	});
		};
        }
    });

});
