$(document).ready(function() {
	dno=0;

	$('.wl_item').each(function(){
		$(this).addClass('ph');
		$(this).hover(function(){
			$(this).addClass('wl_item_hover');
		}, function(){
			$(this).removeClass('wl_item_hover');
		});
		$(this).click(function(){
			if($(this).hasClass('wl_item_sel')){
				if(dno!=1){
				$('.hidden_content').slideUp(200);
				$('.wl_item').removeClass('wl_item_sel');
				}
				dno=0;
			} else {
				$('.hidden_content').slideUp(200);
				$('.wl_item').removeClass('wl_item_sel');
				//$('.wl_item').addClass('ph');
				//$(this).removeClass('ph');
				$(this).removeClass('wl_item_hover');
				$(this).addClass('wl_item_sel');
				$(this).find('.hidden_content').slideDown(200, function(){
																	$.scrollTo($(this).parent(), 800 );
																		});
			}
		});
	});
	
	if ( $("#open").length > 0 ) {
		$('.hidden_content').slideUp(200);
		$('.wl_item').removeClass('wl_item_sel');
		$('#open').removeClass('wl_item_hover');
		$('#open').addClass('wl_item_sel');
		$('#open').find('.hidden_content').slideDown(200, function(){
															$.scrollTo($(this).parent(), 800 );
																});
	}
});
