$().ready(function() {
/*
	$('.accordion').accordion({
		header: '.course-category',
		autoHeight: false,

		autoHeight: false,
		event: 'mouseover',

		navigation: true
	});
*/

$('.panel-click').click(function (){
	window.location = $(this).find('A').attr('href');
});

$('.course-block.panel-click').hover(
	function(){
		$(this).stop().animate({backgroundColor: "rgb(228, 192, 77)", color: "rgb(0, 0, 0)"	}, { duration: "fast" });
		$(this).find('a').animate({color:'rgb(255,255,255)'}, {duration:'fast'});
	},
	function(){
		$(this).stop().animate({	backgroundColor: "rgb(255, 255, 255)",	color: "rgb(0, 0, 0)"	}, { duration: "fast" });
		$(this).find('a').animate({color:'#d9a500'}, {duration:'fast'});
	}
);

});


$(function () {
	$("ul.image-fader").innerfade();
});