$(document).ready(function(){
	var path = location.pathname;
	var category = path.split('/')[1],
		category = category.split('-')[0];
	$('#nav a').each(function(){
		var linkID = $(this).attr('id');
		if (category == linkID) {
			$(this).attr('class', 'highlight');
		}
	});
	
	if ( path ) $('#subNav a[href$="' + path + '"]').attr('class', 'sub-active');
	if ( path == '/') {
		$('#nav a.home').attr('class','highlight');
		$('#subNav li:first-child a').attr('class','sub-active');
	}
	
	$('#callout').click(function(){
	    $('#dialog').dialog({
	        width: 580,
	        modal: true,
	        draggable: false,
	        resizable: false,
	    });
	    return false;
    });

	  $('#subNav li a').each(function(){
	    $(this).text($(this).text().replace("erin caledon", "erin/caledon"));
	  });
	

});

