/* header tabs hover */
$(function(){
	$('div.headerTabs a').hover(function(){
		$(this).find('i').stop().css({opacity:1})
	}, function(){
		$(this).find('i').stop().animate({opacity:0},{queue:false, duration:500});
	});
	
	//When mouse rolls over
	/*$(".loginTab").hover(function(){
		$(this).find('a').addClass('tabHovered');
		$(this).find(".cont").show();
	}, function(){
		$(this).find('a').removeClass('tabHovered');
		$(this).removeClass('tabHovered').find(".cont").hide()
	});*/
	
});
	
$(document).ready(function(){
	$("div.loginTab").hoverIntent({
		over: function() {
			$(this).find('div.cont').slideDown('fast');
			$(this).find('a').addClass('tabHovered');
		}, 
		timeout: 1000, 
		interval: 0,
		out: function(){
			$(this).find('div.cont').slideUp(100, function(){
				$(this).parent().find('a').removeClass('tabHovered');
			});
		}
	});
});

$(function(){
	$(".weditor").find("hr").wrap('<div class="fakeHr"></div>')
});

$(function(){
	$('a.external_link').attr("target", "_blank");
});
