$(document).ready( function(){
		
	$( 'a[rel="external"]' ).click( function(){
		window.open( $(this).attr( 'href' ) );
		return false;
	});
		
	$( '#collecCarousel' ).jcarousel({
		auto: 2,
		wrap: 'both',
		initCallback: collecCarousel_initCallback
	});
	
	$('.cycles').cycle({
		cleartype:true,
		cleartypeNoBg: true
	});

	$( 'a.collecItem' ).hover(function(){
		$( '#titleDisplayer' ).html ( $(this).attr( 'title' ) );
	}, function() {
		$( '#titleDisplayer' ).html ( "&nbsp;" );
	});

	$("#banner").flash({
			src: "/images/banner_flash_top_773x131.swf",
			width: 773,
			height: 131,
			wmode: "transparent"
	});
});

function collecCarousel_initCallback(carousel){
	// Disable autoscrolling if the user clicks the prev or next button.
	carousel.buttonNext.bind('click', function() { carousel.startAuto(0); });
	carousel.buttonPrev.bind('click', function() { carousel.startAuto(0); });
	// Pause autoscrolling if the user moves with the cursor over the clip.
	carousel.clip.hover(function(){ 
		carousel.stopAuto();
	}, function() {
		carousel.startAuto();
	});
};

