$(document).ready(function() {

	$('#menu li').bind('mouseenter',function(){
		
		if($(this).hasClass('inactive')){
			$(this).children('.subtitles').show();
		}
		
	});

	$('#menu li').bind('mouseleave',function(){
		
		if($(this).hasClass('inactive')){
			$(this).children('.subtitles').hide();
		}
		
	});
	
	// set screen resolution if not set
/*
	if($('input[name="screen_resolution"]').val()==''){
		$.post("/new/ajax/set_screen_resolution/", { action: 'set_screen_resolution', width: screen.width, height: screen.height },function(data){
			if(data!=''){
				alert(data);
			}
			});
	}
*/
	
	

});

