/* clear input */

// searchbox functions ( clear & unclear )
function clickclear(thisfield, defaulttext) {
    if (thisfield.value == defaulttext) {
        thisfield.value = "";
    }
}

function clickrecall(thisfield, defaulttext) {
    if (thisfield.value == "") {
        thisfield.value = defaulttext;
    }
} 


/* slideshow settings */

$('.slideshow').cycle({
	fx: 'fade',
	timeout: 4000,
	speed: 1500
});
