        var defaultTitle = " | The Giving Tree Band";
var pageTitle = "";
$(document).ready(function() {
	$('img').load(function() {
		$(this).removeAttr("width")
			   .removeAttr("height")
			   .css({ width: "", height: "" }); // Remove css dimensions as well
	
		$(this).attr('width',this.width);
		$(this).attr('height',this.height);
	});
});
function ShowFirstTimePageLoad(pageTitle){
	ChangePageTitle(pageTitle);
}
function ChangePageTitle(pageTitle){
	if (jQuery.browser.msie) {}
	else{
		if(pageTitle.toLowerCase()=="foreward")
			pageTitle="Foreword";
		document.title = pageTitle + defaultTitle; 
	}
}
