$(document).ready(function(){


	$('#arts_categories li').bind('mouseenter', category_hover);
	$('#arts_categories li').bind('mouseleave', category_hover);
	$('#arts_categories li').click(category_click);
	
	function category_hover(e){
		var frame  = $(this).find('.frame');

		if(!frame.is(':visible')){
			frame.css('display','block');
		}
		else{
			frame.css('display','none');
		}
	}
	
	
		
	function category_click(e){
		e.preventDefault();
		this.blur();

		var url = $(this).find('a:first').attr('href');
		document.location.href = url;
	}
	
	
	
	
	
	
	$('div#cat_current a').click(category_dropdown);
	$('#cat_dropdown').bind('mouseleave', category_dropdown_close);
	$('#cat_dropdown li').click(category_dropdown_selected);
		
	function category_dropdown(e){
		e.preventDefault();
		this.blur();
	
		$('#cat_dropdown').show();
	}
	
	
	function category_dropdown_close(e){

		
		$(this).hide();
		
	}
	
	function category_dropdown_selected(e){
		e.preventDefault();
		this.blur();
		var url = $(this).find('a').attr('href');
		window.location = url;
	}
	
});
