$(document).ready(function() {
	function cursor_hover($collection) {
		$collection.hover(
			function() {
				$(this).css("cursor", "pointer");
			},
			function() {
				$(this).css("cursor", "default");
			});
	};
	
	
	//Setup Click Events For Links and their containers
	var $containers = $(".Menu_Container li, .Footer_Container");
	$containers.click(function() {
		window.location = $(this).children("a").attr("href");
	});
	
	cursor_hover($containers);
	
	var $buttons = $(":submit, :button, :radio");
	cursor_hover($buttons);
});


