$(function() {
	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.png/, "-over.png"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/-over.png/, ".png"));
		}
	);
	
	$(".t04_gallery_header").click(
		function () {
			$(this).next(".t04_gallery_images_wrapper").toggle(300);
		}
	);
});
