/**
 * @author johnhardy
 */
$(document).ready(function() {

	//TOP NAV HOVERS & CLICKS
	$("#top_nav_bar .top_button").hover(

		function() {

			$(this).css({

				"background-color":"#4c76fd"

			});

		},
		function() {

			$(this).css({

				"background-color":""

			});

		}
	).click(

		function() {

			//GET THE HREF OF THE ANCHOR
			var ref=$(this).find("a").attr("href");

			document.location.href=ref;

		}

	);

	//TOP ORDER BUTTON HOVE & CLICK

		$("#top_nav_bar .top_order_button").hover(

			function() {

				$(this).css(
					{

						"background-color":"#ca8384"


					}

				);

			},
			function() {

				$(this).css(
					{

						"background-color":""


					}

				);



			}

		).click(

			function() {

				//GET THE HREF OF THE ANCHOR
				var ref=$(this).find("a").attr("href");

				document.location.href=ref;




			}

		);





});

