(function($) {
	$(document).ready(function() {
		$("div#navigation ul#nav li").mouseover(function(e) {
			$(this).children("ul.sub-menu").prepend("<div id='thearrow'></div>");
		});
		
		$("div#navigation ul#nav li").mousemove(function(e) {
			var left = $(this).position();
			left = left.left;
			$("#thearrow").css("left", left + ($(this).width() / 2) - 15);
			/*
			var offset = $("#wrapper").position();
			$("#thearrow").css("left", e.clientX - offset.left - 110);
			*/
		});
		
		$("div#navigation ul#nav li").mouseout(function() {
			$(this).children("ul.sub-menu").children("#thearrow").remove();
		});
		
		if($("#start_gallery tr td").length > 0) {
			var i = 0;
			setInterval(function() {
				if(i + 1 == $("#start_gallery tr td").length) {
					i = 0;
				}
				$("#start_gallery tr").animate({
					scrollLeft : ($("#start_gallery tr td").width() + 12) * i
				}, 600, function() {
					i++;
				});
			}, 4000);
		}
	});
})(jQuery);
