$(function(){
	$('#frame #back .csc-default .tx-galleryfromfolder-pi1 img:gt(0)').hide();
	setInterval(function() {
		$('#frame #back .csc-default .tx-galleryfromfolder-pi1 :first-child').fadeOut(3000).next('img').fadeIn(3000).end().appendTo('#frame #back .csc-default .tx-galleryfromfolder-pi1');
	}, 8000);

	$("#vmenu ul li").mouseover(function() {
		$(this).find("div").css({
			'display' : 'inline'
		});
	}).mouseout(function() {
		$(this).find("div").css({
			'display' : 'none'
		});		
	});
});
