jQuery(document).ready(function($){

	$(".search_btn").hover(
	  function () {
	    $(this).find("a").css('color','#fff');
	  }, 
	  function () {
	    $(this).find("a").css('color','#6eafca');
	  }
	);
	
	$(".search_btn").click(function(e){
		$(this).blur();
		document.location.href = ($(this).find("a").attr('href'));
		return false;
	});
	
	$('a.external').click(function(e){
		$(this).blur()
		window.open($(this).attr('href'));
		return false;  // prevent default action
	});

	$('#page_content img').jcaption();

});

