$(document).ready(function() {
  
  $(".sub").hide();

  	//Info jump down
	$("#close, #open_info a").click(function() {
	  $("#info").toggleClass("open");
	  $("#info").slideToggle({ duration: 1000, easing: "bounceout" });
	  return false;
	});
	
	var block = $(".col_hover, #popular-posts ul li, #text-5 .textwidget p, #text-6 .textwidget p, #smart-archives-list ul li");
   	block.click(function(){
    window.location = $(this).find("a:first").attr("href")
   	});
   	block.addClass("clickable");
   	block.hover(function(){
      window.status = $(this).find("a:first").attr("href")
   	}, function(){
      window.status = ""
   	});
   	
   		var block = $(".featured-color-clickable");
   	block.click(function(){
    window.location = $(this).find("a:first").attr("href")
   	});
   	block.addClass("clickable_featured");
   	block.hover(function(){
      window.status = $(this).find("a:first").attr("href")
   	}, function(){
      window.status = ""
   	});
	

	
});// End doc ready
