$(document).ready(function(){
	//Homepage Image slideshow
	$('.fadein img:gt(0)').hide();
	setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, 4000);
	//Colorbox
	$(".group1").colorbox({rel:'group1'});
	//Rotating Text Slider
	$("#slider").easySlider({
		auto: true,
		controlsShow: false,
		pause: 6000,
		continuous: true
	});
});




















