$('document').ready(function(){

	$('a').mouseover(function() {
	
  		
		
		var title = $(this).attr('title');	
		
		// console.log('mouse over: ' + title);
		
		$('#productname').html('<b style="color:white;">' + title + '</b>');
		
	});




});

