$(function() {
$('.hideme').css({'display' : 'inline'});

$("a[rel^='imagebox-']").colorbox({transition:"fade", width:"75%", height:"85%"});
$("#jqtool a")
  .hover(function(e) {
    $(this).next("em").hoverFlow(e.type, {opacity: "show", top: "-75"}, "slow");
  }, function(e) {
    $(this).next("em").hoverFlow(e.type, { opacity: "hide", top: "-85"}, 'fast');
  });
	
$(".highlight").jFade({
		trigger: "mouseover",
		property: 'background',
		start: 'f9f9f9',
		end: 'c6d880',
		steps: 25,
		duration: 30
	}).jFade({
		trigger: "mouseout",
		property: 'background',
		start: 'c6d880',
		end: 'f9f9f9',
		steps: 25,
		duration: 30
	});
$(".pane-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
});

$(document).ready(function() {
	  $("#toTop").scrollToTop();
	  $('#ketchupform').ketchup({
	  validationAttribute: 'rel'
	});
	});
