
function headlineSlider(){
	$(".sliderImages").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		visible: 1,
		easing: "easeinout",
		auto: 10000,
		speed: 450,
		mouseWheel: true
	});
}

function photoGallery() {
$("#photo-carousel-inner").jCarouselLite({
	btnNext: ".next",
	btnPrev: ".prev",
	visible: 4,
	easing: "easeinout",
	speed: 150,
	mouseWheel: true,
	circular: false
});
}

function initColorbox(){
	$('.post a').each(function(){
		if(
			( $(this).attr('href').indexOf('.jpg') > -1 ) ||
			( $(this).attr('href').indexOf('.jpeg') > -1 ) ||
			( $(this).attr('href').indexOf('.gif') > -1 ) ||
			( $(this).attr('href').indexOf('.png') > -1 )
		)
			$(this).colorbox({scalePhotos:"true", maxWidth:"90%", maxHeight:"90%"});
	});

	$('a.colorbox').colorbox({scalePhotos:"true", maxWidth:"90%", maxHeight:"90%"});
}


$(document).ready(function(){	
	initColorbox();
	headlineSlider();
	photoGallery();
});