$(document).ready(function()
{
	$('#recent').jScrollPane({scrollbarWidth:8});
	$('#relevant').jScrollPane({scrollbarWidth:8});
	$('#blogcontent').jScrollPane({scrollbarWidth:8});
	$('#moredetail').jScrollPane({scrollbarWidth:8});
});

function stopVideo(id)
{
	try
	{
		player = document.getElementById(id);
		player.pauseVideo();
	}
	catch(err){}
}


(function($) {
	$.fn.customFadeIn = function(speed, callback) {
		$(this).fadeIn(speed, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
	$.fn.customFadeOut = function(speed, callback) {
		$(this).fadeOut(speed, function() {
			if(jQuery.browser.msie)
				$(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
})(jQuery);