/* Site specific javascript */


$(document).ready(function(){
    $('a').click(function(){
    	this.blur();
    });
    
    $(".search_keywords").focus(function() {
       if (this.value == "Keywords")
         this.value = "";
    });
    $(".search_keywords").blur(function() {
       if (this.value == "")
         this.value = "Keywords";
    });
    
    $(".search_location").focus(function() {
        if (this.value == "Location")
          this.value = "";
     });
     $(".search_location").blur(function() {
        if (this.value == "")
          this.value = "Location";
     });
         
    
    $('#savedJobsList').hide();
    
    $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });    
    
});	