﻿$(document).ready(function(){
	
	$('li.unique span').click(function(){
		if ($(this).hasClass('hov') )
			{ $(this).next().hide(); $(this).removeClass('hov');
		} else {
		    $(this).next().show(); $(this).addClass('hov');
		}
	})
	
});
$(window).resize(function(){					  
});