$(document).ready(function(){
	
	// corners
	
	$('.xtop h1, .xmiddle .heading').dropShadow({
	    left    : 3,
		top     : 3,
		blur    : 3,
		opacity : 0.6,
		color   : "#333"
	});
	
	 
     var shadowedBox       = RUZEE.ShadedBorder.create({ corner:5 });
     $('.box').each(function() { shadowedBox.render(this); });
     shadowedBox.render($('.box'));
     
     //var shadowed          = RUZEE.ShadedBorder.create({ corner:1, shadow:25 });     
     //$('.shadowed').each(function() { shadowed.render(this); });
     //shadowed.render($('.shadowed'));
	 
	
	
	
	
	
	// store top menu
	/*
	//Remove outline from links
	$("div.div5 a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("div.div5 li").toggle(function(){
		$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	},function(){
		$(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	$("div.div5 li").mouseover(function(){
	   if ($(this).height()=='25') {
	       $(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	   } else {
	       $(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	   }
	});
	
	//When mouse is removed
	$("div.div5 li").mouseout(function(){
		$(this).stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'});
		//$(this).stop().toggle();
	});
	*/
	
});
