

$(document).ready(function() {
	$('.Card').css('cursor','pointer').click(function() {
		window.location.href = $(this).find('a').attr('href');
	});
	$('.searchTextInput')
		.attr('value', 'Search IT@JHU')
		.focus(function(event) {
			this.select();														   
		}
	);
	$('.interiorNavigation1 > ul > li:last').addClass('Last');
	$('#navigationInside .topLevel1 ul li:last').addClass('Last');
	$('.bottomNavBar').css('display','none');
});
