$.noConflict();
jQuery(document).ready(function($) {
	$('li.drop-down a.target').mouseenter(function() {
		$(this).addClass('open'); 
		$('div#header').css('z-index', '2');
		$(this).next().css({'visibility' : 'visible', 'z-index' : '1'});
	});

	$('li.drop-down').mouseleave(function() {
		if ($(this).children('a.target').hasClass('open')) {
			$(this).children('a.target').removeClass('open');
			$('div#header').css('z-index', 'auto');
			$(this).children('ul').css({'visibility' : 'hidden', 'z-index' : 'auto'});
		}
	});
	
	if ($('a#email').length != 0) {
		$('a#email').attr('href', 'mailto:?subject=Thought you\'d like this!&body=' + $('title').html() + ' - ' + window.location);
	}
});
