$(document).ready(function(){
	$('img[src$=png]').supersleight();
	
	$('li.rollover').hover(function(){
		var data = $(this).metadata();
		$(this).find('img:first').attr('src', data.rollover).supersleight();

	}, function(){
		var data = $(this).metadata();
		$(this).find('img:first').attr('src', data.normal).supersleight();
	});
});
