$(function() {	
	
	$("a[href^='http']").livequery(function() {$(this).attr('target','_blank');});
	$("a.external").livequery(function() {$(this).attr('target','_blank');});
	
	$("#nav").superfish({
		speed: 100,
		delay: 900,
		autoArrows: false
	});
	
	attach_site_actions();
	$("input.search").focus(function() {
		this.value='';
		$(this).css('color', 'black');
		
	})
});

function attach_site_actions() {
	$("a[href^='http']").attr('target','_blank');
	$("a.external").attr('target','_blank');
	$("a.share").each(function() {
		var article_id = $(this).attr('rel');
		$(this).attr('href','mailto:?subject=Great%20article%20%40%20stealthlax.com&body=I%20just%20read%20a%20great%20article%20on%20stealthlax.com%20%20%0A%0ACheck%20it%20out%20at%3A%0Ahttp%3A%2F%2Fwww.stealthlax.com%2Farticles%2Fview%2F'+article_id+'%2F');
	});
	$("a.email").each(function() {
		var article_id = $(this).attr('rel');
		$(this).attr('href','mailto:?subject=Great%20article%20%40%20stealthlax.com&body=I%20just%20read%20a%20great%20article%20on%20stealthlax.com%20%20%0A%0ACheck%20it%20out%20at%3A%0Ahttp%3A%2F%2Fwww.stealthlax.com%2Farticles%2Fview%2F'+article_id+'%2F');
	});
	
}