﻿/* UI scripts that appear on all or almost every page */

// Uses http://jQuery.com

$(function(){
    $("body").addClass("js");

    $('input[placeholder], textarea[placeholder]').placeholder();
	
    // $('div.mod-search').fieldfocus().find('label.overlabel').overlabel();
	
	// requires jquery.overlabel.2.js
	$.fn.overlabel();
	$("#ctl00_pnlSearch_ddlSearchType").linkselect(); 
	
});

$(window).load(function (){ 
    $(".equalheight").equalHeights();
    
}); 




