});
function createHover() {
$(".project_thumb").unbind('mouseenter').unbind('mouseleave'); // reset the hover to prevent doubling
$(".project_thumb").bind("mouseenter",function() { // crete hover
$("img", this).fadeTo("fast", 0.7); // Sets the opacity to 70% on hover
}).bind("mouseleave",function(){
$("img", this).fadeTo("fast", 1.0); // Sets the opacity back to 100% on mouseout
});
$(".next_page").attr("onclick",""); // remove the pagination function
$(".prev_page").attr("onclick",""); // remove the pagination function
$(".next_page").click(function() { changePage((parseInt($("#current_page").val())+1),$("#limit").val()); setTimeout("createHover()",100); });
$(".prev_page").click(function() { changePage((parseInt($("#current_page").val())-1),$("#limit").val()); setTimeout("createHover()",100); });
}