/* K2 Style Scripts v0.1 */


// run this on page load
jQuery(document).ready(function(){
	jQuery("h1.blog-title").attr("title", "Click to go back to the Homepage.");
	jQuery("h1.blog-title").mouseover( function(event) { window.status = 'http://'+location.hostname; } );
	jQuery("h1.blog-title").mouseout( function(event) { window.status =''; } );
	jQuery("h1.blog-title").click( function(event) { window.location = 'http://'+location.hostname; } );			
});


// functions to clear text fields on clickof any default text
function clearText(thefield){ if (thefield.defaultValue==thefield.value) thefield.value = "" }
function restoreText(thefield) { if (thefield.value=="") thefield.value = thefield.defaultValue; }

