function dropDowns() {
	$("#topNav li").not($("#topNav li li")).hover(function() {
		$(this).find("ul:nth-child(2)").css("display","block");
		$(this).find("a:first").addClass("onn");
	},function(){
		$(this).find("ul:nth-child(2)").css("display","none");
		$(this).find("a:first").removeClass("onn");
	});
	$("#topNav ul li").not($("#topNav ul ul li")).not($("#topNav ul li:last")).not($("#topNav ul li:first")).prepend("&nbsp;&nbsp;|&nbsp;&nbsp;");
}
$(document).ready(dropDowns);

function plugin() {
	$(".plugin:last").css("background", "none").css("padding-bottom", "0");
	$(".plugin").each(
		function( intIndex ){
			if($(this).html().length < 12){
	            $(this).css("display","none");
	        }
		}
	);
}
$(document).ready(plugin);

function ptags() {
	$(".greyBox p:first").css("margin-top", "0");
	$(".greyBox p:last").css("margin-bottom", "0");
}
$(document).ready(ptags);

function leftNav() {
	$("#leftNav ul ul a").prepend("&raquo; ");
}
$(document).ready(leftNav);