$(function() {

	//Drop down menu
 
    $('#navigation ul li').hover(function(){ 
		$('> ul', this).fadeIn('fast');
	
	}, function() {
		$('> ul', this).hide();
	});

	//Header cycle options
	
	$("#slider").easySlider({	
		vertical: true, 
		continuous: true,
		auto: true,
		pause: 10000
	});
	
	$(".target").tooltip();
	
	//Extra styling for the sidebar
	
	$('.widget ul li:last-child, #navigation ul li ul li:last-child').css('border-bottom','0px');
	$("#sidebar li h2").prepend("<div class='bg'></div>");
	$(".widget ul li ul li").prepend("<div class='dots'></div>");

});