$(document).ready(function(){
	// Your code here
	
	$(':submit').addClass('submit');
	$('ul.recycle').cycle({
		speed: 1000,
		pause: 1
	});	
	$('.home-lower div, .home-aside div:not(#home-news)').fitted({
 		'status' : true,
  		'title'  : true		
	}).css('cursor','pointer');
	var home_lower_div_ht = 100;
	$('.home-lower div:lt(3)').each(function() {
		if ($(this).height() > home_lower_div_ht) home_lower_div_ht = $(this).height();
	});
	$('.home-lower div:lt(3)').height(home_lower_div_ht);
	
	$('a.lightbox').lightBox(); // Select all links with lightbox class
	$('#content table:not(.figure) tbody tr:odd').addClass('odd');
	$("a[href$='.pdf']").attr('target','_blank');
	$("a.external").attr('target','_blank');

});
