/**
 * site.js
 */

$(document).ready(function () {
	// Add Click Event to Navigation
	$('UL#siteNavigation LI').click(function() {
		var location = $(this).attr('linkto');
		var navOption = $(this).attr('id');
		switch (navOption) {
			case 'navBrochure':
				window.open(location);
				break;
			default:
				window.location.href = location;
				break;
		}
	});
	
	// Add Hover Event to Navigatio
	// This is for browsers that do not support CSS3
	$('UL#siteNavigation LI').hover(
		function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
	);
});

