function showheader(){
$('body.home #header').fadeIn(400);
}

$(document).ready(function(){


$('.j_clearonfocus').focus(function(){
 $(this).val('');
})

 $('.unclickable,.mute').click(function(event){
  event.preventDefault();
 });
 
 $('table.tradesmen-directory th').hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover')})
	
 $('blockquote').addClass('cmask5');

	
$('body:not(.home) .mainnav li:not(.current) a')
	.css( {backgroundPosition: "0 36px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 72px)"}, 
			{duration:250})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 36px)"}, 
			{duration:250})
		})

$('.searchbox').focus(function(){
if ($(this).val() == 'Search') $(this).val("");
});

$('.searchbox').blur(function(){
if ($(this).val() == '') $(this).val("Search");
});



$(".cmask,.cmask5").prepend('<div class="tl corner"></div><div class="tr corner"></div><div class="bl corner"></div><div class="br corner"></div>');

$(".j_postvid").click(function(){
var myparentform = $(this).parents('form:first').hide();

	$.post('/_lib/taker.php',{submitvideo: "true",name: '"' + $('#submitvideowindow #name').val()+ '"',email: '"' + $('#submitvideowindow #email').val()+ '"',linktovideo: '"' + $('#submitvideowindow #linktovideo').val()+ '"',aboutvideo: '"' + $('#submitvideowindow #aboutvideo').val()+ '"'},function(){$('#submitvideowindow .confirm').show();});

});

});//END DOC READY
         

