/*--  SPORTIA   --*/

$(document).ready(function(){

/*BANNERIKARUSELLI*/
jQuery(document).ready(function() {
		jQuery('#bannercarousel').jcarousel ({auto: 2, wrap: 'last', scroll: 1, animation: 1000 ,
                initCallback: mycarousel_initCallback 
              });
});

/*BANNERIKARUSELLI JATKAA RULLAAMISTA JOS TULLAAN POIS PAALTA*/
function mycarousel_initCallback(carousel)
{
	   carousel.clip.hover(function() {
	   carousel.stopAuto();
		}, function() {
		carousel.startAuto();
		});
};

/*TEAM SPORTIA*/
$(".hidden-panel").click(function(){
                $("#hidden-panel").slideToggle("slow");
		$(this).toggleClass("active"); 
		return false;
	});
$(".hidden-panel2").click(function(){
                $("#hidden-panel2").slideToggle("slow");
		$(this).toggleClass("active"); 
		return false;
	});



/*TARJOUSPANEELI*/
$(".show,#showme").click(function(){
                $("#panel").slideToggle("slow");
		$(this).toggleClass("active"); 
		return false;
	});

/*TOP-NAVIGATION ROLLOVER IMAGES*/
RollOverEvent = function(imageId){
      	$(imageId).mouseover( function(){ $(this).attr("src", $(this).attr("src").split('_off').join('_on')) } );
      	$(imageId).mouseout( function(){ $(this).attr("src", $(this).attr("src").split('_on').join('_off')) } );
      	}
        $().ready(function(){RollOverEvent(".top-navigation a img.roll");
        });

/*END DOC-READY*/
});

















