$(function() {
	// Link Styling
	$(".standard a:not([id]):not([class])").addClass("standardLink");
	// Paragraph Styling
	$(".standard p:not([id]):not([class])").addClass("standardParagraph");
	// Unordered List Styling
    $(".standard ul:not([id]):not([class])").addClass("standardList");
	// Ordered List Styling
    $(".standard ol:not([id]):not([class])").addClass("standardOrderedList");
	
	// Login Slider Slide Down
	$("#headerLogin").click(function() {
		$("#loginStretch").slideDown("slow");
	});
	// Login Slider Slide Up
	$("#jQueryCloseLoginPanel").click(function() {
		$("#loginStretch").slideUp("slow");
		return false;
	});
	
	// Header Menu DropDowns
	$("#headerMenu > li").hover(function() {
		$(this).children("ul").show();
	}, function() {
		$(this).children("ul").hide();
	});
});
