// JavaScript Document

$(function(){

	//FLIR Setup
	
	FLIR.init({ path: 'js/facelift-1.2/' });
	$('h1').each( function() { FLIR.replace(this); });
	
		
	// Lightbox Settings

	$('.showcase a').fancybox({
		'zoomSpeedIn': 0, 
		'zoomSpeedOut':	0,
		'imageScale': true,
		'overlayOpacity' : .4,
		'padding': 0
	});
	
	//Slideshow
	var count = 0;
	$('#carousel').addClass('bg' + count);
	$('#slides').easySlider({speed: 400});
	//Slideshow - Background Switcher
	
//	$('#nextBtn a').click(function() {
//		count++;
//		$('#carousel').removeClass();
//		$('#carousel').addClass('bg' + count);
//	});
//	$('#prevBtn a').click(function() {
//		count--;
//		$('#carousel').removeClass();
//		$('#carousel').addClass('bg'+ count);
//	});

	
	//Site Open
	$('#carousel_index').hide().slideDown(2000);
	
	
	// Link Hover Effect
	
	$('#footer li img').hover(function(){
		$(this).stop().animate({
		"opacity":"1"}, 200)
	}
	,function() { 
		$(this).stop().animate({
		"opacity":".5"}, 200); 
	});
	
	//Click here fadeout
	
	$('#nextBtn').click(function(){
		$('.clickhere').fadeOut();
	});
	
	//Open sites in blank window
	
	$('.description a').click(function(){
        window.open(this.href);
        return false;
    });
	
});

