var $j = jQuery.noConflict();

$j(function(){
						   
  var options = {
	newsList: "#bar",
	startDelay: 10,
	tickerRate: 80, 
	placeHolder1: "_"
  }
  $j().newsTicker(options);
  
   $j('#products').hover(
	function () {
		$j('.index #content').css('background-image', 'url(wp-content/themes/dunlop/images/backgrounds/1.3.jpg)');	
	}
	);
  $j('#stockist').hover(
	function () {
		$j('.index #content').css('background-image', 'url(wp-content/themes/dunlop/images/backgrounds/2.26.jpg)');	
	}
	);
  
  $j('#trade').hover(
	function () {
		$j('.index #content').css('background-image', 'url(wp-content/themes/dunlop/images/backgrounds/2.23.jpg)');	
	}
	);
  
  $j('#media').hover(
	function () {
		$j('.index #content').css('background-image', 'url(wp-content/themes/dunlop/images/backgrounds/4.5.jpg)');	
	}
	);
  
  $j('#learning').hover(
	function () {
		$j('.index #content').css('background-image', 'url(wp-content/themes/dunlop/images/backgrounds/5.9.jpg)');	
	}

	);
});
