
$(document).ready(function(){
	
	//$('a[@rel*=lightbox]').lightBox();
	//$('.lightbox').lightBox();
	//$('.fancybox').fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 

	$(".alert").animate({ height:'show', opacity:'show' }, 'slow');
	
	$('a[@rel=external]').attr('target', '_blank');
	$('.blank').attr('target','_blank');


	$('.thumbs a').click(function () {
		$('.image').attr('src', $(this).attr("href"));
		return false;
    });
	
	$('.image').attr('src', $('.thumb').attr("href"));
	
	$('.scroll').jScrollPane({scrollbarMargin: 10, dragMinHeight: 40, dragMaxHeight: 120}); 
	
	$('.cycle').cycle({ 
		fx:     'fade', 
		speed:   1000, 
		timeout: 3000
	});
	
	
	// collapsable content
	$('ul.collapse').find('div').hide().end().find('h4').click(function() {
		$('ul.collapse div').hide();
		$(this).next().toggle();
	});
	
	
	

});

