// JavaScript Document
$(document).ready(function() {

	$('#slideshowPage').cycle({ 
		fx:     'fade',
		speed:	'500', cleartypeNoBg: true
	});
	
	$('#slideshowLogo').cycle({ 
		fx:     'scrollDown',
		speed:	'500', cleartypeNoBg: true
	});
	
	$("input.focus, textarea.focus").focus(function () {
        if (this.value == this.defaultValue) {
            this.value = "";
        }
        else {
            this.select();
        }
    });

    $("input.focus, textarea.focus").blur(function () {
        if ($.trim(this.value) == "") {
            this.value = (this.defaultValue ? this.defaultValue : "");
        }
    });
	
	
});

function checksubmit(){		
	if ($('#fld_search').val() == '' || $('#fld_search').val() == $('#fld_search').attr('defaultValue')){
		return false;
	}else{
		return true;
	}			
}
