// add shadow
$(function() {
	//no shadow for IE
	if ($.browser.msie) return;
	$('#dj_content').dropShadow();
});

// dropdown menu for IE
$(function() {
	// add 'over' class on each item of the menu on mouseover
	$('#dj_menu li').each(function() {
		$(this).mouseover(function() {
			$(this).addClass('over');
		});
	});
	
	// remove 'over' class on each item of the menu on mouseout
	$('#dj_menu li').each(function() {
		$(this).mouseout(function() {
			$(this).removeClass('over');
		});
	});
	
});