jQuery(document).ready(function($) {
	jQuery.noConflict();
// Scroll with easing
	$.easing.custom = function (x, t, b, c, d) { 
		var s = 1.70158;  
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 
	}
	$(".side_neInner").scrollable({
		vertical: true,
		size:1,
		loop: true,
		interval: 4000,
		speed: 600
		/*,easing: 'custom'*/
	});
	
	function addMega(){$(this).addClass("hovering");}
    function removeMega(){$(this).removeClass("hovering");}
    var megaConfig = {
         interval: 100,
         sensitivity: 10,
         over: addMega,
         timeout: 100,
         out: removeMega
    };
    $("li.mega").hoverIntent(megaConfig);
	
	$(".brandsScroll").scrollable({
		size:4
	});	
	   // Png Hack
  if ($.browser.msie && $.browser.version == 6) {
       DD_belatedPNG.fix('#topnav, .container, .topHome, .topCntct, .topstmap');
    }
});