jQuery(document).ready(function($){
	$(".csimgsw_thumb img").click(function(){		
		var newpic = $(this).attr('rel');
		$('.switchimage').ImageSwitch({
			Type: "FadeIn", // Type of effect to run the function
			NewImage: newpic //The new image will be loaded in
		});
		$('.switchimage').attr('alt',$(this).attr('alt'));
		$('.switchimage').attr('title',$(this).attr('title'));
	}); 
});
