$(document).ready(function(){
	$('#close').hover(function(){
		$(this).find('img').attr('src', '/images/demo-cross-hi-ship.png');
		$(this).pngFix();
	}, function(){
		$(this).find('img').attr('src', '/images/demo-cross-lo-ship.png');
		$(this).pngFix();
	});
	
	$('#prev').hover(function(){
		$(this).find('img').attr('src', '/images/demo-prev-hi-ship.png');
		$(this).pngFix();
	}, function(){
		$(this).find('img').attr('src', '/images/demo-prev-lo-ship.png');
		$(this).pngFix();
	});
	
	$('#next').hover(function(){
		$(this).find('img').attr('src', '/images/demo-next-hi-ship.png');
		$(this).pngFix();
	}, function(){
		$(this).find('img').attr('src', '/images/demo-next-lo-ship.png');
		$(this).pngFix();
	});
});
