jQuery.noConflict();
(function($){

$(document).ready(function(){
	
	$('#loginbox input.text').each(function(){
		this._default = this.value;
	}).focus(function(){
		if (this.value == this._default)
			this.value = '';
	}).blur(function(){
		if (this.value == '')
			this.value = this._default;
	});

	if ($.fn.jCarouselLite)
	{
		$('#slideshow .slider').jCarouselLite({
			btnPrev: '#slideshow .btn-prev a',
			btnNext: '#slideshow .btn-next a',
			visible: 1,
			scroll: 1,
			auto: 10000,
			circular: true,
			speed: 400
		});
	}

});

})(jQuery);
