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

	function() {

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

			function() {

				$(this).css(

					{

						"background-color":"#17143b"


					}

				);


			},
			function() {

				$(this).css(

					{

						"background-color":""


					}

				);

			}

		).click(

			function() {

				var ref=$(this).find("a").attr("href");

				document.location.href=ref;

			}

		);



	}

);
