$(document).ready(function() {

	var pageId = $('body').attr('id');

	$('#navigation a').each(function() {
		if($(this).attr('href') == pageId) {
			$(this).parent().addClass("current_page_item"); 
		} else if($(this).attr('href') == '' && pageId == 'home') {
			$(this).parent().addClass("current_page_item"); 
		}
	});


	$('#sidebar .subscribe_div input.email').each(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('defaultvalue'));
		}
	}).focus(function () {
		$(this).removeClass('inputerror');
		if ($(this).val() == $(this).attr('defaultvalue')) {
			$(this).val('');
		}
	}).blur(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('defaultvalue'));
		}
	});

	$('#content input.email').each(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('defaultvalue'));
		}
	}).focus(function () {
		$(this).removeClass('inputerror');
		if ($(this).val() == $(this).attr('defaultvalue')) {
			$(this).val('');
		}
	}).blur(function () {
		if ($(this).val() == '') {
			$(this).val($(this).attr('defaultvalue'));
		}
	});

});

