// jquery has loaded
jQuery(document).ready(function() {

	// top section nav on mouse over
	$("#section-nav li").mouseover(function () {
		if (this.id != "section-nav-on") {
			$(this).css("backgroundColor", "#ddf1f1");
			$(this).children("a").css("color", "#1736d7");
		}
    });
	
	// top section nav on mouse out
	$("#section-nav li").mouseout(function () {
		if (this.id != "section-nav-on") {
			$(this).css("backgroundColor", "#fff");
			$(this).children("a").css("color", "#333");
		}
    });
	
	// bottom section nav on mouse over
	$("#section-main-category li").mouseover(function () {
		if (this.className != "title") {
			$(this).css("backgroundColor", "#ddf1f1");
			$(this).children("a").css("color", "#1736d7");
		}
    });
	
	// bottom section nav on mouse out
	$("#section-main-category li").mouseout(function () {
		if (this.className != "title") {
			$(this).css("backgroundColor", "#fff");
			$(this).children("a").css("color", "#333");
		}
    });

	
}); // end jquery loaded
