$(document).ready(function() {
    
	// Dropdown menu
	$('#top .hasSub').hover( 
		function() { $(this).children('ul').fadeIn(100); }, 
		function() { $(this).children('ul').fadeOut(100); } 
	);
	
	$('#left .hasSub').click(function() { 
		$('.hasSubActive').removeClass('hasSubActive');
		$('.submenu-active').removeClass('submenu-active');
		$(this).addClass('hasSubActive');
		$(this).children('ul').addClass('submenu-active'); 
	}); 
	
	// Popup
	$(".popup, a[rel^='prettyPhoto']").prettyPhoto({show_title: false, overlay_gallery: false});
	
});

function setTopId(id) {
	$.ajax({
		type: "POST",
		async: false,
		url: "/ajaxs/setTopId/"+id
	});		
}
