/* input clear plugin */
jQuery.fn.inputclear = function() {
 return this.each(function(){
    /* clear search input on focus */
    $(this).focus(function () {
         label = $(this).val();
         $(this).val('');
    });
    $(this).blur(function () {
         if ($(this).val() == '') {
            $(this).val(label);
         }
    });
 });
};

$(document).ready(function(){
    $("#newsletter input").inputclear();
    $('.news').cycle({
		fx: 'fade',
        speed: '3000',
        timeout: '7000'
	});
});
