$(document).ready(function() {
$('div.pane #trunkslide .page h2 a.link').bind("mouseenter", function() {
		$(this).css({color: '#999999', background: 'url(imgs/sfnd_link.png) right center no-repeat'});
	}).bind("mouseleave", function() {
		$(this).css({color: '#666666', background: 'url(imgs/sfnd_link2.png) right center no-repeat'});
	});
});




