$(document).ready(function(){
	// Navigation hovering
	var subNavTimer;
	$("header > nav > ul > li.subnav").hover(
		function() {
			$("header > nav > ul > li.active").removeClass('active').addClass('inactive');
			$(this).addClass('hover').siblings().removeClass('hover');
			clearTimeout(subNavTimer);
		},
		function() {
			subNavTimer = setTimeout(function() {
				$('li.hover').removeClass('hover');
				$('li.inactive').removeClass('inactive').addClass('active');
			}, 1000);
		}
	);
	
    // Emoticons
    $("div#emoticons > img").click(function() {
        var emoticon = $(this).attr("alt");
        var text_area = document.add_comment.comment;
        text_area.value += emoticon+' ';
        text_area.focus();
    });
});
