// JavaScript Document

$(document).ready(function(){

	if($.browser.msie && ($.browser.version == 6.0)) { 
		jQuery.ifixpng(base_url + 'public/imgs/pixel.gif');
		jQuery('.fixpng').ifixpng();
	}


	$('select').change(function() {
	
		window.location = $(this).val();

	});
						   

	$('table.course_list td').hover(
	
		function () {
			$(this).parent().addClass('hover');
		},
		
		function () {
			$(this).parent().removeClass('hover');
		}	  
	);
	
	$('table.course_list td').click(function () {
			var link = $(this).children('a').attr('href');	
			window.location = link;
	});
	
	$('table.course_list a').click(function () {
			var link = $(this).attr('href');
			window.location = link;
			return false;
	});

});

