$(function() {
	$("#browse-accordion").accordion({
		autoHeight: false,
		collapsible: 'true',
		header: 'dt',
		active: 'false'
	});
	
	$(".thumbnail img:nth-child(2)").hide();
	$(".thumbnail img:first-child").hover(
		function()
		{
			$(this).siblings("img:nth-child(2)").fadeIn("fast");
		},
		function()
		{
			$(this).siblings("img:nth-child(2)").fadeOut("fast");
		});
});