   var volierePage = new Array();

$(document).ready(function(){


	setTimeout("volierePage.showImg()", 5500);
	
   $(function() {

   // do something on document ready
   $("#picList").sortable({items: 'img'});
   $('#picList img').hover(
   		function() {
			var LinkID =  $(this).attr('id').replace("p","l");
			$("#"+LinkID).addClass("lhover");
			$("#"+$(this).attr('id')).addClass("move");
      },
	  	function() {
	  		var LinkID =  $(this).attr('id').replace("p","l");
			$("#"+LinkID).removeClass("lhover");
			$("#"+$(this).attr('id')).removeClass("move");
      });

	$('#linkList a.pli').hover(
   		function() {
			var picID =  $(this).attr('id').replace("l","p");
			var picSrc = $("#"+picID).attr("src").replace("1","2");
			$("#"+picID).attr({ src: picSrc, alt: "Test Image" });
		      },
	  	function() {
			var picID =  $(this).attr('id').replace("l","p");
			var picSrc = $("#"+picID).attr("src").replace("2","1");
			$("#"+picID).attr({ src: picSrc, alt: "Test Image" });

      });
 });

 
 
 });
 
 volierePage.showImg = function (){

	$("#picList").removeClass("hidden");
	$("#filme").removeClass("fbb").addClass("fplain");

 }
 
