$(document).ready(function(){
	// menu hover effect
	$('#menu a').hover(function(){
		$(this).animate({paddingLeft: "+=10px"}, 200);
	}, function(){
		$(this).animate({paddingLeft: "-=10px"}, 200);			
	});
	
	// adds rounded corners to the container div and sidebar h4
	$('#container').corners("30px")
	$('#sidebar h4').corners("10px")
	
	// uncomment this line to turn on drop shadow (not compatible with rounded corners)
	//$('#container').dropShadow({left: 0, top: 5, opacity: 0.8, blur: 4});

	$('#feature p').hide().fadeIn(6000);
	
	
});