/*  jQUERY CUSTOM FUNCTION 
------------------------------------------------------------------------------------------------------------------------------------------- */
jQuery(document).ready(function($) {
								
	// Tabs
	$("ul.tabs").tabs("div.panes > .tabs-panes", {effect: 'slide', current: 'active', fadeInSpeed: 'slow', fadeOutSpeed : -100});
	//effect: 'default' 'fade' 'ajax' 'slide' 'horizontal' !!!
	
	// Scroll
	$(".scrollable").scrollable({circular: true, speed: 800}).autoscroll();
	
	// External Links Open in New Windows
	$("a[rel='external']").bind("click.external", function(){
		window.open(this.href);
		return false;
	});
	
	// LavaLamp Menu
	$("#animate").lavaLamp({
		fx: "easeOutBack",
		speed: 700
	});
	
	// Home Expand Text
	$(".wrapper-toggle").hide();
	$(".toggle").click(function () {
		$(".wrapper-toggle").slideToggle("slow");
		return false;
	});
	$('.columns').hover(function(){
		$(this).find('img').stop(true, true).animate({'opacity': 0.5}, 200);
	}, function(){
		$(this).find('img').stop(true, true).animate({'opacity': 1}, 200);
	});
	
	// Slides
	$('#slides').slides({
		preload: true,
		preloadImage: 'images/loading.gif',
		effect: 'slide, fade',
		crossfade: true,
		slideSpeed: 500,
		fadeSpeed: 500,
		container:'slides_container',
		generateNextPrev: true,
		generatePagination: true
	});
	
});

