$(document).ready(function() {
						   
// EDIT BELOW THIS LINE

$('h1.logo').click(function() {document.location='http://www.restortelecom.com/'});

	$(".navbar img").hover(function() {
		if ($(this).attr("class") != "active") {
			var mySrc = $(this).attr("src");
			mySrcSplit = mySrc.split("_off");
			mySrc = mySrcSplit[0] + "_on" + mySrcSplit[1];
			$(this).attr("src",mySrc);
		}
	},function() {
		if ($(this).attr("class") != "active") {
			mySrc = $(this).attr("src");
			mySrcSplit = mySrc.split("_on");
			mySrc = mySrcSplit[0] + "_off" + mySrcSplit[1];
			$(this).attr("src",mySrc);
		}
	});		
	
		   
});

// add a border to the first element in the drop down menu
$('ul.navbar li ul li a:first').css({ 'border-top' : '1px solid #ccc' });
