// JavaScript Document

$(document).ready(function() {
    $('input[type=text]').focus(function() {
      $(this).val('');
      });					   
    //$('#divUpgrade').hide();
 });


function selectStyle(element)
{
        $(element).addClass("hover");
		$('a:first',element).addClass("hover");
}

function hideElement(element)
{
		$(element).hide();	
}

function showElement(element)
{
		$(element).show();	
}

function changeAttr(element,strAttr,strValue)
{
	$(element).attr(strAttr,strValue);	 
}

function cboRedirect(element,strUrl) {
	if (element.value != 0) {
		document.location = strUrl + element.value;
	}
}
