$(document).ready(function() {
	$('body.forsiden div#pageContainer > img').css({'position':'absolute','margin-left':'-88px','z-index':'-1'});
	$('div#main div#primary-contents input[type=text]').css({'width':'257px','font-family':'Georgia','font-style':'italic'});
	$('div#main div#primary-contents input[type=submit]').css({'margin-left':'205px','margin-top':'15px','padding':'3px 14px','border':'0px solid #969696','margin-bottom':'3px'});
	$(function(){
		$("#primary-contents input[type=text]").focus(function() {
			if($(this).val() == $(this).attr('defaultValue'))
				$(this).val('');
		}).blur(function() {
			if(jQuery.trim($(this).val()) == "") {
				$(this).val($(this).attr('defaultValue'));
			}
		});
	});
}); 