// JQuery Footer
$(document).ready(function(){
	$('#mce-EMAIL').focus(function() {
		if (this.value == this.defaultValue) {
		this.value = "";
	}
    });
	
	$('#mce-EMAIL').blur(function() {
		if (this.value == "") {
		this.value = this.defaultValue;
		}
	});
						
	$('#mce-FNAME').focus(function() {
		if (this.value == this.defaultValue) {
		this.value = "";
		}
	});
	$('#mce-FNAME').blur(function() {
		if (this.value == "") {
		this.value = this.defaultValue;
		}
	});
						
	$('#mce-LNAME').focus(function() {
		if (this.value == this.defaultValue) {
			this.value = "";
		}
	});
	$('#mce-LNAME').blur(function() {
		if (this.value == "") {
			this.value = this.defaultValue;
		}
	});
						
	$('#SubmitSubscribe').hover(function(){
		$('#SubmitSubscribe img').toggle();	
	})
	$('#RssLink').hover(function(){
		$('#RssLink img').toggle();	
	})
						
	$('#SubmitSubscribe').click(function(){
		$('#mc-embedded-subscribe-form').submit();
	});
						
	$('#FollowMe').hover(function(){
		$('#FollowMe img').toggle();	
	})
});
