﻿$(document).ready(function(){
		//javascript for top menu dropdown
		$(".menu").children("ul").children("li").bind("mouseover", function(){
		   $(this).children("ul").show();
		   $(this).css({ border: "1px solid #dfddd9", padding: "5px"});
		   $(this).children("a").css({ color: "#ffa415"});
		 });
		$(".menu").children("ul").children("li").bind("mouseout", function(){
		   $(this).children("ul").hide();
		   $(this).css({ border: "none", padding: "6px" });
		   $(this).children("a").css({ color: "#5b6266"});
		 });
	 });