$(function() {
	//$('img[@src$=.png]').ifixpng(); 
	
	/* EASING **/
	/* http://gmarwaha.com/jquery/jcarousellite/#demo */
	
    $(".sliderImages").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		easing: "bounceout",
	    speed: 1000
    });
	
	$(".sliderTextHolder").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		vertical: true,
		visible: 1,
		easing: "bounceout",
	    speed: 1000
    });
	
	//$('#mainarea ul.tabs').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 10000);
	
/*	$('#rotator a.next, #rotator a.prev').fadeTo("fast", 0.70);*/
	$('#rotator a.next, #rotator a.prev, .portfolioitemslider a.next, .portfolioitemslider a.prev').hover(function() {
		$(this).fadeTo("fast", 0.5);
	},
	function () {
		$(this).fadeTo("fast", 1);
	});
	
	$(".portfolioitemslider").jCarouselLite({
		btnNext: ".next",
        btnPrev: ".prev",
		auto: 5000,
	    speed: 1000,
		easing: "bounceout"
    });

	 
});

