$j(document).ready(function(){

	//Configure the newsletter sign up form in the sidebar
	$j('#frmemail').focus(function(){
		if( $j(this).val() == 'Enter your Email'){
			$j(this).val('');
		}
	}).blur(function(){
		if( $j(this).val() == ''){
			$j(this).val('Enter your Email');
		}
	});
	$j('#frmzip').focus(function(){
		if( $j(this).val() == 'Zip Code'){
			$j(this).val('');
		}
	}).blur(function(){
		if( $j(this).val() == ''){
			$j(this).val('Zip Code');
		}
	});
	
	//Setup homepage slideshow
	if( $j('#imagesfront').size() > 0 ){
		$j('#imagesfront').cycle();
	}
	
});