$(document).ready(function(){
		$("#feature").cycle({ 
    			fx:     'fade', 
    			speed:   2000, 
    			timeout: 5000,
    			next:   '#next', 
    			prev:   '#prev' 
		});
		
		
		 // Default Form Values
				
				$("#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;
					}
				})
				
				
				$("#feature_pause").click(function() {
					$("#feature_pause").hide();
					$("#feature_play").show();
					
					 $('#feature').cycle('pause');
				});

				$("#feature_play").click(function() {
					$("#feature_play").hide();
					$("#feature_pause").show();
					
					 $('#feature').cycle('resume');
				});
});
