/**
 * This code was written by Mike Moore November 2009 and is the property of OnNowTV.com Broadcasting Association...Copyright 2008
 * This code MAY NOT BE USED without the expressed written consent of 
 * OnNowTV.com Broadcasting Association - all rights reserved.
 
 * File name:     jquery_pagecontrol.js
 * Description:   define common global variables below:
 * History:       
 *   mm/dd/yyyy - Name - brief description of changes              
 */
 
$(document).ready(function() {

	$('.formSrchBucket input[type="text"]').focus(function() {
		$(this).addClass("formSrchBucketfocusField").css({color:"#000000"});
		if (this.value == this.defaultValue){  
			this.value = '';  
		}  
		if(this.value != this.defaultValue){  
			this.select();  
		}  
	});
	
	$('.formSrchBucket input[type="text"]').blur(function() {
		if ($.trim($(this).val().length) == 0) $(this).val($(this).attr('id')).css({color:"#aeb1b4"});
	});

});

