// JavaScript Document

// run jquery code when ready
$(document).ready(function() {

	// set the quote image
	var num = Math.floor(Math.random()* 6 + 1);
	var src = $('#quote_img').attr('src');
	var src = src.replace('quote_1.png','quote_' + num + '.png');
	$('#quote_img').attr('src',src);
	
	// fade the banner images
	i = 1;
	pic = $('#bannerPic');
	bannerSrc = pic.attr('src');
	var interval = window.setInterval(function() {
		iNew = (i<8) ? ++i : 1;
		newBannerSrc = bannerSrc.replace(/swap_pic_[0-9]{1}.jpg/, 'swap_pic_' + iNew + '.jpg');
		$('#bannerPic').attr('src',newBannerSrc);
		i = iNew;
	}, 5000);
	
	// hide the h1 background on the main page
	if(location.href=='http://suehansenspeaks.com/index.htm'
	   || location.href=='http://www.suehansenspeaks.com/index.htm'
	   || location.href=='http://suehansenspeaks.com'
	   || location.href=='http://www.suehansenspeaks.com'
	   || location.href=='http://suehansenspeaks.com/'
	   || location.href=='http://www.suehansenspeaks.com/'
	   ) {
		$('#page_header h1').css('background-image', 'none');
	}

});

