
   
// this document needs to be removed and consoldted into the main js page for the page builder componets   

$(document).ready(function() {
	
//	dose not work to fix the issue of jira search-153 still pulled into the page last 	$('#Left_nav a').css('font-weight','normal');
		
	 $("#slideshow").cycle({
	 		 fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	 		// random:  1,
	 		 speed: 5000,
	 		 pause:  1    
	});

// these need to load last to give the other script time to hide the content. 	 
	$(".equlize").equalHeights();	
	$(".equlize_2").equalHeights();	 

	

	$(".Rnav_content a").click(function(){
			var ObId = $(this).get(0).id;
		//	alert("object id is" + ObId);
			s=s_gi('cengagesearch');
			s.linkTrackVars='prop2,prop4,eVar4,events'; 
			s.linkTrackEvents='event4';
			s.prop4=ObId;
			s.eVar4=ObId;
			s.events='event4';
			s.tl(this,'o','ObId');
		//	alert("s.prop4 is " + s.prop4 + " and eVar4 is" + s.eVar4);
	});
	
	$(".Rnav_content_html a").click(function(){
			var ObId = $(this).get(0).id;
		//	alert("object id is" + ObId);
			s=s_gi('cengagesearch');
			s.linkTrackVars='prop2,prop4,eVar4,events'; 
			s.linkTrackEvents='event4';
			s.prop4=ObId;
			s.eVar4=ObId;
			s.events='event4';
			s.tl(this,'o','ObId');
		//	alert("s.prop4 is " + s.prop4 + " and eVar4 is" + s.eVar4);
	});
	
});


