
	
$(document).ready(function(){
//hoverIntent <-> onclick
	$('.accordion .head').click (function() {
		//window.location = $(this).prev().attr('href');
		$(this).next().slideDown('fast', function(e){

		$('.accordion .head').removeClass('opened');
				
		$(this).prev().addClass('opened');
			$('.accordion .head').not('.opened, .curr').next().slideUp('fast',function(){});

			//if ($(this).prev().attr('rel')=='cat') window.location = $(this).prev().attr('href');
			//window.location = $(this).prev().attr('href');
		});
			
		return false;
			
	}, function(){});//.next().not('.curr').not('.sub_info_c_li ul').hide();
	
	$('.accordion .head').not('.curr').next().hide();
	/*
	$('.accordion .header').not('.level2 .header').mouseover(function() {
		
		$('.opened').not('.curr').next().slideUp('fast',function(){});
		$('.accordion .head').removeClass('opened');
			
		return false;
			
	});
	*/

});
	