$(document).ready(function() {

	
	/* mod the footer menu a little bit */
    $('a[title="footer-nav-head"]').contents().unwrap().parent().addClass('footer_menu_header');
    $('a[title="footer-nav-subhead"]').addClass('footer_menu_subheader');
    $('#page_tail div ul li:nth-child(2)').addClass('footer_menu_head_break');
    $('#page_tail div ul li a').parent().css('padding-bottom', '10px');
	
	/* add a bumper line between widgets */
    $('hr').replaceWith('<div style="float:none; width:100%; height:2px; background:#ccc; margin:10px 0; clear:both;"></div>');

	
	/* hide default contents of input fields when focused */
	$("input").focusin(function() {
		if($(this).val() == $(this).attr('title')) {
			$(this).val("");
		}
	}).focusout(function() {
		if($(this).val() == "") {
			var str = $(this).attr('title');
			$(this).val(str);
		}
	});


});
