/**
 * site.js
 *
 * @author Andy Do <andy.do@resiteonline.com>
 * @version $Id$
 *
 */
 
$(document).ready(function () {
	// Hover Event on Navigation
	$('#firstNavContainer UL#nav LI[type="firstNav"]').hover(
		function () {
			$(this).css('background-color', '#546C05');
		},
		function () {
			$(this).css('background-color', '');
		}
	);
	$('#secondNavContainer UL#nav LI[type="secondNav"]').hover(
		function () {
			$(this).css('background-color', '#314C67');
		},
		function () {
			$(this).css('background-color', '');
		}
	);
});



