$(document).ready(function () {

$(".apply-shadows.small, .apply-shadows.medium").append("<span class='shadow-left'></span><span class='shadow-right'></span>");

$("#menu ul li:last-child").addClass("last-child");

$("#top ul li > a").mouseenter(function(){
	
	$(this).addClass("current");
	$(this).parent().find(".box").fadeIn(200);
	
});
$("#top ul li").mouseleave(function() {
	$(this).children("a").removeClass("current");
	$(this).find(".box").fadeOut(200);
});

/* autoclear function for inputs */
$('.autoclear').click(function() {
if (this.value == this.defaultValue) {
this.value = '';
}
});
$('.autoclear').blur(function() {
if (this.value == '') {
this.value = this.defaultValue;
}
});

$('.gotop').click(function(){
	$('html, body').animate({scrollTop:0}, 'slow');
	return false;
});

});


