$(function() {

	$('.videoWidget img').css({"opacity":"0.2"});
	
	$('.videoWidget a.videoOverlay').hover(function() {
		$(this).parent('.videoWidget').find('img').animate({"opacity":"1.0"});
		$(this).animate({"opacity":"0.0"});
	}, function() {
		$(this).parent('.videoWidget').find('img').animate({"opacity":"0.2"});
		$(this).animate({"opacity":"1.0"});
	});
	
	$('input#s').focus(function() {
		if($(this).attr("value") == "Search") { $(this).attr("value",""); }
	});
	$('input#s').blur(function() {
		if($(this).attr("value") == "") { $(this).attr("value","Search"); }
	});
	
	$('input.fEmail').focus(function() {
		if($(this).attr("value") == "e-mail") { $(this).attr("value",""); }
	});
	$('input.fEmail').blur(function() {
		if($(this).attr("value") == "") { $(this).attr("value","e-mail"); }
	});
	
	$('input#tlhrut-tlhrut').focus(function() {
		if($(this).attr("value") == "e-mail") { $(this).attr("value",""); }
	});
	$('input#tlhrut-tlhrut').blur(function() {
		if($(this).attr("value") == "") { $(this).attr("value","e-mail"); }
	});

	$('#sidebar li.current_page_item').parent('ul').show();
	$('#sidebar li.current_page_item ul ul').hide();
});