/*

	Fantasy Attic Generic CSS

*/

jQuery(window).load(function() {
	
	//Load up the homepage slider (if needed)
	if(jQuery('#home_feature').length){
		jQuery('#home_feature').nivoSlider({
			pauseTime: 3000,
			directionNav: false,
			controlNav: false
		});	
	}
	
	//Round some input corners
/* 	jQuery('.input-box').corner("5px"); */
/* 	jQuery('button.button').corner("5px"); */

	//any input with text inside needs to have it removed on click
	jQuery('input[type=text],input[type=password]').
	focus(function(){
				
		var val = jQuery(this).val();
		
		if(val == this.defaultValue){
		
			jQuery(this).val('');
		
		}
		
	}).
	blur(function(){
	
		var val = jQuery(this).val();
	
		if(val == ''){
		
			jQuery(this).val(this.defaultValue)
		
		}
	
	});

});

