// Standard jQuery header
;(function($) {


$(function(){
	$('.fadein img:gt(0)').hide();
	setInterval(function(){$('.fadein :first-child').fadeOut(2500).next('img').fadeIn(2500).end().appendTo('.fadein');}, 4500);
});

$(document).ready(function(){
$('.Showlist').hide();

$('.Clicklist').click(function(event){
$('.wrap_list').hide();
$('.Showlist').show();
$('.Clicklist').hide();
});


});


})(jQuery);
