$(function(){
	var str1;
	var str2 = '...';
	var cut;
	var newStr;
	$('div.fsprovider a').each(function() {
		str1=$(this).html();
		if(str1.length > 55){
			cut = str1.slice(0,55);
			newStr = cut.concat(str2);
			$(this).html(newStr);
		}
	});
	//event logging for home page
	$("ul.firstlevel:eq(1) a").click(function() {
	    eventLogger.logDirectoryEvent($('#presentationId').text(), "EVENT_HOMEPAGE_TO_ONLINEPCGBROWSE");
	});
	
	$("ul.firstlevel:eq(2) a").click(function() {
	    eventLogger.logDirectoryEvent($('#presentationId').text(), "EVENT_HOMEPAGE_TO_CAMPUSPCGBROWSE");
	});
	
	$("div#homepagecta a").click(function() {
	    eventLogger.logDirectoryEvent($('#presentationId').text(), "EVENT_HOMEPAGE_TO_FLEXLP");
	});
	
	$("div#toppicks a").click(function() {
	    eventLogger.logDirectoryEvent($('#presentationId').text(), "EVENT_HOMEPAGE_TO_FEATUREDSCHOOLDSF");
	});
	
	$("div.section_tips a").click(function() {
	    eventLogger.logDirectoryEvent($('#presentationId').text(), "EVENT_HOMEPAGE_TO_STATICBROWSE");
	});
	
	$("ul#tabs a").click(function() {
	    eventLogger.logDirectoryEvent($('#presentationId').text(), "EVENT_HOMEPAGE_TO_ONLINEDEGREEBROWSE");
	});
});
