JQ(document).ready(function() {
	JQ('h3.whyTitle')
		.mouseover(function() {
			JQ(this).next().next().addClass('showMeNext');
			timeout = setTimeout(function(){
				JQ('.showMeNext').slideDown('fast').removeClass('showMeNext');
			},300);
			return false;
		})
		.mouseout(function() {
            JQ(this).next().next().removeClass('showMeNext');
			return false;
		})
		.click(function(){
			JQ(this).next().next().slideDown('fast').removeClass('showMeNext');
			return false;
		});
 // shows the slickbox on clicking the noted link
  
	
 // hides the slickbox on clicking the noted link
  JQ('.whyFull').click(function() {
	JQ(this).fadeOut('fast');
  });

});
