/* jsHandler.js */


$(document).ready(function(){
//showing active navigation tab
	var s = new String(window.location.href);
	$('#nav a').each(function(i){
		var hr = $(this).attr('href');
		if ((s.search(hr) >=0 && hr != '/') || (hr == '/' && window.location.href == 'http://'+window.location.hostname+'/'))
			$(this).parent('li').addClass('current');
	});

});
