// JavaScript Document

$(document).ready(function() { 
	 //setup
   $(".sub-menu").hide();
	 
	 var is_chrome = (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) || (navigator.userAgent.toLowerCase().indexOf('safari') > -1);
	 if(is_chrome)
	 {
		 $("head").append("<style type='text/css'>  .dotHR { top: 135px; } </style>");
   }
	 
	 var is_IE = (navigator.userAgent.toLowerCase().indexOf('msie') > -1);
	 if(is_IE)
	 {
		 $("head").append("<style type='text/css' media='screen'>  .dotHR { top: 135px; } </style>");
		 $("head").append("<style type='text/css' media='screen'>  @font-face { font-family: Walkway; font-weight: bold; src: url('fonts/WalkwayBold.eot'); } h1, #navCol li, #navCol li li { font-weight: normal; }</style>");
   }
	 
	 //functions
	 
	 //menu hide/show
   $("#menu-item-21 > a").click(function () {
     $(".sub-menu").toggle("medium");
   });
 });
