$(document).ready(function() {
    $('.banner').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	


	$(".main_nav a").hover(function() {
	$(this).next(".nav_hover_content").stop(true, true).animate({opacity: "show", top: "200"}, "slow");
	}, function() {
	$(this).next(".nav_hover_content").animate({opacity: "hide", top: "200"}, "fast");
	});
 


	$('#template_cycle').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    next:   '#next2', 
	    prev:   '#prev2' 
	});


	/*$("a.lightbox").fancybox({
		'titleShow' : false
	});*/


	$('#project_img').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 0, 
		next:   '#next2', 
		prev:   '#prev2' 
	});
	
	
	$('#karbon_example').cycle({ 
		fx:     'fade', 
		speed:  300, 
		next:   '.karbon_example_nav', 
		timeout: 0 
	});
	
	jQuery('a[rel*=facebox]').facebox()
	
});
