$(document).ready(function(){

	$('.product_categories div').click(function(e){
	
		e.preventDefault();
		
		if($(this).find('.arrow.closed').length > 0)
		{
			$(this).find('.arrow.closed').removeClass('closed');
			$(this).find('.arrow').addClass('open');
		}
		else
		{
			$(this).find('.arrow.open').removeClass('open');
			$(this).find('.arrow').addClass('closed');
		}
		
		$(this).next('ul').slideToggle();
	});
	
	$('.product_categories ul li a').click(function(e){
	
		e.preventDefault();
		
		if($(this).parent().children('ul').length > 0)
		{
			$(this).parent().children('ul').slideToggle();
			
			if($(this).find('.arrow.closed').length > 0)
			{
				$(this).find('.arrow.closed').removeClass('closed');
				$(this).find('.arrow').addClass('open');
			}
			else
			{
				$(this).find('.arrow.open').removeClass('open');
				$(this).find('.arrow').addClass('closed');
			}
		}
		else
		{
			window.location = $(this).attr('href');
		}
	});
	
	$('.product_categories a').hover(function(e){
	
		e.preventDefault();
		
		if($(this).parent().children('ul').length > 0)
		{
			$(this).css('text-decoration', 'none');
		}
	});
});
