$(document).ready(function(){
	$("div#slider_inner").cycle({ 
		fx:     'fade', 
		speed:   2000, 
		timeout: 5000,
		next:   'a#slider_next', 
		prev:   'a#slider_prev' 
	});
	
	$("a#slider_pause").click(function(){
		$(this).hide();
		$('a#slider_play').show();
		$('div#slider_inner').cycle('pause');
	});

	$('a#slider_play').click(function(){
		$(this).hide();
		$('a#slider_pause').show();
		$('div#slider_inner').cycle('resume');
	});
	
	var default_values = new Array();
	
	$('#login input:text, #login input:password').focus(function(){
		defaultval = $(this).attr('value');
		this.value = '';
	});
	
	$('#login input:text, #login input:password').blur(function(){
		if (this.value == ''){
			this.value = defaultval;
		}
	});
});
