
$(document).ready(function(){

	var hoverSpeed = 300;

	 $("#header h1 a").mouseover(function() {
		$("#header h1").append('<span></span>');
		$("#header h1 span").css({display:"none"}).fadeIn(hoverSpeed);
	}).mouseout(function() {
		$("#header h1 span").fadeOut(hoverSpeed, function() {
			$(this).remove();
		});
	});
	
	$(".mainmenu li a").mouseover(function() {
		$(this).parent().append('<span class="hover"></span>');
		$(".mainmenu li span").css({display:"none"}).fadeIn(hoverSpeed);
	}).mouseout(function() {
		$(".mainmenu li span").fadeOut(hoverSpeed, function() {
			$(this).remove();
		});
	});
	
	$('a[rel="category tag"]:contains("Portfolio")').css({display:"none"});
	$('a[rel="category tag"]:contains("Blog")').css({display:"none"});
	
});

