$(document).ready(function(){
	hook_stuff_list();
});

function hook_stuff_list(){
	$('div.RoundedCorner').livequery(function(){
		$(this).unbind()
			.bind('mouseover', function(){
				$(this).addClass('RoundedCornerHover');
			})
			.bind('mouseout', function(){
				$(this).removeClass('RoundedCornerHover');
			})
	});
}