﻿$(document).ready(function() {

    $(".popUpLink").live("click", function()
	    {
	        if ($(this).hasClass("contactLink")) {
	            windowHeight = 150;
	        } else {
	            windowHeight = 575;
	        }
		    window.open($(this).attr("href"),"popUpLink","status=0,toolbar=0,width=500,height=" + windowHeight + ",scrollbars=1,location=0,menubar=0");
		    return false;
	    }
    );
    
    $("input[type=text]").each(function() {
        if ($(this).val() == $(this).attr("title")) {
        }
    });

    $("input[type='text']").focus(function() {
        if ($(this).attr("title") == $(this).val()) {
            $(this).val('');
        }
    });

    $("input[type='text']").blur(function() {
        if ($(this).val() == "") {
            $(this).val($(this).attr("title"));
        }
    });
});