$(document).ready(function() {
	//toggle icon transparency
	$('img.transparent').fadeTo('fast',0.5);
	
	$('a.toggle img').fadeTo('fast',0.5);
	
	$('a.toggle img').hover(function() {
		$(this).fadeTo('fast',1);
		}, function() {
		$(this).fadeTo('fast',0.5);
	});

	$('div.toggle').children().fadeTo('fast',0);

	$('div.toggle').hover(function() {
		$(this).children().fadeTo('fast',1);
		}, function() {
		$(this).children().fadeTo('fast',0);
	});

	$.togglethison = function(what) {
		$('div' + what).children().fadeTo('fast',1);
	};

	$.togglethisoff = function(what) {
		$('div' + what).children().fadeTo('fast',0);
	};

	//function to toggle the "right click to enlarge" icon on the images
	$('div#image_enlarge img').fadeTo('fast',0);
	$('div.image_view').hover(function() {
		$('div#image_enlarge img').fadeTo('fast',1);
		}, function() {
		$('div#image_enlarge img').fadeTo('fast',0);
	});

	//Slidelist
	$('dl.slideList dt').click(function() {
		$(this).next().slideToggle('slow');
		$(this).next().siblings('dd:visible').slideUp('slow');
	});

	//Toggle slidelist
	$.showthis = function(what) {
		var id = 'dd#'+what;
		$('dl.slideList dd:visible').slideUp('slow');
		$(id).slideDown('slow');
	};

});
