$(function() {

    /* Set columns on the home page to the same height */
    //equalHeight($("#content-main, #content-sub"));
    equalHeight($(".section"));

	/* Clear search box onFocus */
	$("#search input#q").focus( function() {if ($(this).val()=="Search") {$(this).val("");}}).blur( function() {if ($(this).val()=="") {$(this).val("Search");}}); //

});


/* Equal height columns */
function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
