// JavaScript Document
$(document).ready(function() {
 $(function(){
	   var path = location.pathname.substring();
	   var b=path.match(/[\/|\\]([^\\\/]+)$/);
		//alert( b[1] );
	    //alert(str)
	   if ( b[1] )
		 //$('#contact_us').attr('class', 'selected');
		 $('#topbar_content a[@href$="' + b[1] + '"]').attr('class', 'selected');
	 });
 });