$(function() {
	mp.frontpage.init();
});


mp.frontpage = {
	init : function() {
		this.addLinks();
	},
	
	addLinks : function() {
		$links = $('.frontpage_courses a:has(img), .banner a:has(img)');
		$links.each(function() {
			var href = $(this).attr('href');
			$(this).parents('tr').find('h2, p').wrap('<a href="'+ href +'"></a>');			
		});		
		
		$links = $('.banner a');
		$links.each(function() {
			var href = $(this).attr('href');
			$(this).parents('.banner').unbind('click');
			$(this).parents('.banner').click(function() { location = href });
		});		
		
		
		
	}
	
}



