
$(document).ready(function(){
	
	$('#mainimage_wrap').load
	$('#mainimage_wrap').cycle({
		fx: 'fade',
		speed: 2500,
		timeout: 7000,
		random: 1
	});
	$('.mouseover').mouseover(function(){
		$(this).attr('src', 'images/topimages/'+$(this).attr('imgkey')+'_on.jpg');
	});
	$('.mouseover').mouseout(function(){
		$(this).attr('src', 'images/topimages/'+$(this).attr('imgkey')+'.jpg');
	});
	$(".change_img").mouseover(function(){
		$(this).attr('src', $(this).attr('imgkey')+'_on.jpg');
	});
	$(".change_img").mouseout(function(){
		$(this).attr('src', $(this).attr('imgkey')+'.jpg');
	});
	$(".content dl a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
		
});
