function ptmyspace(T, C, U, L) {
	var targetURL = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(T) + '&c=' + encodeURIComponent(C) + '&u=' + encodeURIComponent(U) + '&l=' + L;
	window.open(targetURL);
}

var RecaptchaOptions = {
  'theme': 'white'
};

$(document).ready(function() {
//    $('#messages').effect('bounce');
    $('#search .text').focus(function() {
		if($(this).val() == "SEARCH") {
			$(this).val("");
		}
	}).blur(function() {
		if($(this).val() == "") {
			$(this).val("SEARCH");
		}
	});
});

