$(document).ready(function() {
	
	/*
	
	$('#sitemast a').mouseenter(function() {
		$(this).animate({
		width: '310px'}, 250);

	});
	$('#sitemast a').mouseleave(function() {
		$(this).width('272px');
	});

	*/

	$('#banner').cycle({ 
	    fx:     'fade', 
	    timeout: 5000,
	 	pause: 1 
	});
	
	$('.default-value').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});

});


