﻿$(document).ready(function(){


	// Make entire mainsearch item hoverable and clickable
	$("#module_mainsearch .mainsearch-item").click(function(){
	  	window.location=$(this).find("a").attr("href"); return false;
	});
	$("#module_mainsearch .mainsearch-item").hover(function(){
  		$(this).addClass("active");
  		$(this).css({cursor: 'pointer'});
	},function(){
		$(this).removeClass("active");
	});	
	
  // $(".moduletools").appendTo($(next()));
	$(".moduletools").each(function(){
        var jObjTools = $(this);
        var jObjSection = jObjTools.next('.section');
        jObjTools.prependTo(jObjSection);
});
});