$(function() {
	//$('img[@src$=.png]').ifixpng(); 
	
	//EASING
	//http://gmarwaha.com/jquery/jcarousellite/#demo
/*
    $(".sliderImages").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		easing: "easeinout",  //options: bounceout, easeinout, backout 
		auto: 18000,
		speed: 600
    });

	$(".sliderTextHolder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		//vertical: true,
		visible: 1,
		easing: "easeinout", // options: bounceout, easeinout, backout
	 	auto: 18000,
		speed: 600
    });
*/
	//Simple slide panel
	$(".show-signup").click(function(){
		$("#signup-box").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});	 
});

//$(document).ready(function () {
	//console.debug($(document));
//})

//Removed from the original function because a conflict
jQuery(document).ready(function($){
	// $ is now safe within this function
	$(".sliderImages").jCarouselLite({
		    btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		easing: "easeinout",  //options: bounceout, easeinout, backout 
		auto: 18000,
		speed: 600
	});
	$(".sliderTextHolder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		//vertical: true,
		visible: 1,
		easing: "easeinout", // options: bounceout, easeinout, backout
	 	auto: 18000,
		speed: 600
    });
});

