// JavaScript Document
$(function(){
    $('.support-email').each(function(){
		$(this).html('<a href="mailto:support@eyecitemedia.com">'+$(this).html()+'support@eyecitemedia.com</a>');
	});
	$(document).pngFix();
	$('a.bookmark-me').jFav();
	$('ul.nav-drop li:has(> ul)').hoverIntent({
		over: function(){ $(this).find('ul').slideDown('fast'); },
		out: function(){ $(this).find('ul').fadeOut('slow'); },
		timeout: 100
	});	
});
