$(document).ready(function()
{
	// Show/hide default values in the login forms
	$('.default-value').each(function() {
		var default_value = this.value;
		$(this).css('color', '#959595');
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
				$(this).css('color', '#36332E');
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				$(this).css('color', '#959595');
				this.value = default_value;
			}
		});
	});
	
	// Slideshow
	$('#main_carousel').jcarousel({
        auto: 8,
		scroll: 1,
        wrap: 'circular',
		animation: 1000,
		easing: 'swing',
    });
});
