jQuery.preloadImages('/public/img/menu/new/menu_back_new_anchor.png');

jQuery(document).ready(function($){
	var path = window.location.pathname;

	//collecting and setting active menus
	$('div.right_new_menu').filter(function(){
		return $(this).attr('id') == path;
	}).css({'background-image' : 'url(/public/img/menu/new/menu_back_new_anchor.png)'});
	
	//collecting and setting inactive menus
	$('div.right_new_menu').filter(function(){
		return $(this).attr('id') != path;
	}).mouseover(function(){
		$(this).removeClass('right_new_menu').addClass('right_new_menu_sel');
	}).mouseout(function(){
		$(this).removeClass('right_new_menu_sel').addClass('right_new_menu');
	}).click(function(){
		window.location = $(this).attr('id');
	});
});
