jQuery(document).ready(function($){
	// Hover Class for menu
	$('#navbar li').hover(function() {
		$(this).addClass('side-hover');
			}, function() {
		$(this).removeClass('side-hover');
	});
	
	// Superfish menu dropdown
	$("ul.nav").superfish({speed: "fast"});
	
	// Medua Plugin
	$('.media').media();
	
	// MP3 Plugin
	$('.mp3').media({ height: 20, autoplay: true}); 
	
	// Gallery Widget
	$('div.latestGallery div.thumbImg').hover(function() {
		$(this).addClass('thumbImg_Hover');
			}, function() {
		$(this).removeClass('thumbImg_Hover');
	});
	$('div.latestGallery div.thumbImg').css('opacity', '0.6');
		
		$('div.latestGallery div.thumbImg').mouseover(function(){
			$(this).stop().animate({opacity: 1}, {duration:600})
		})
		.mouseout(function(){
			$(this).stop().animate({opacity: 0.6}, {duration:800})
		});
	
	// .
	
	// ..
	

		$('div.hoverit').mouseover(function(){
		if ($(this).hasClass('podcast')) $(this).css({backgroundPosition: '0px -136px'});
		if ($(this).hasClass('blog')) $(this).css({backgroundPosition: '-64px -136px'});
		if ($(this).hasClass('webcast')) $(this).css({backgroundPosition: '-128px -136px'});
		if ($(this).hasClass('legal')) $(this).css({backgroundPosition: '-188px -56px'}).children('div').css({color: '#ffffff'});
		if ($(this).hasClass('training')) $(this).css({backgroundPosition: '-188px -56px'}).children('div').css({color: '#ffffff'});
		if ($(this).hasClass('published')) $(this).css({backgroundPosition: '-188px -56px'}).children('div').css({color: '#ffffff'});
		if ($(this).hasClass('ask')) $(this).css({backgroundPosition: '-188px -56px'}).children('div').css({color: '#ffffff'});
		if ($(this).hasClass('topright')) $(this).css({backgroundPosition: '0px -30px'}).children('div').css({color: '#f7f414'});

	}).mouseout(function(){
		if ($(this).hasClass('podcast')) $(this).css({backgroundPosition: '0px 0px'});
		if ($(this).hasClass('blog')) $(this).css({backgroundPosition: '-64px 0px'});
		if ($(this).hasClass('webcast')) $(this).css({backgroundPosition: '-128px 0px'});
		if ($(this).hasClass('legal')) $(this).css({backgroundPosition: '-188px 0px'}).children('div').css({color: '#666666'});
		if ($(this).hasClass('training')) $(this).css({backgroundPosition: '-188px 0px'}).children('div').css({color: '#666666'});
		if ($(this).hasClass('published')) $(this).css({backgroundPosition: '-188px 0px'}).children('div').css({color: '#666666'});
		if ($(this).hasClass('ask')) $(this).css({backgroundPosition: '-188px 0px'}).children('div').css({color: '#666666'});
		if ($(this).hasClass('topright')) $(this).css({backgroundPosition: '0px 0px'}).children('div').css({color: '#ffffff'});

	});


});
