$(document).ready(function(){

	// Requried: Navigation bar drop-down
	$("nav ul li").hover(function() {
		$(this).addClass("active");
		$(this).find("ul").show().animate({opacity: 1}, 300);// default 400
		},function() {
		$(this).find("ul").hide().animate({opacity: 0}, 400);// default 200
		$(this).removeClass("active");
	});
	
	// Requried: Addtional styling elements
	$('nav ul li ul li:first-child').prepend('<li class="arrow"></li>');
	$('nav ul li:first-child').addClass('first');
	$('nav ul li:last-child').addClass('last');
	//$('nav ul li ul').parent().append('<span class="dropdown"></span>').addClass('drop');

});

// Google Analytics
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-388844-22']);
  _gaq.push(['_setDomainName', '.dave.co.nz']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
