$(document).ready(function() {
	$('#topslide').before('<div id="nav">').cycle({
		fx:     'fade',
		speed:   3000,
		timeout: 4000,
		pause:  '1',
		pager:  '#nav'
	});
	
	// Swap values
		jQuery(function() {
		    swapValues = [];
		    jQuery(".sv").each(function(i){
		        swapValues[i] = jQuery(this).val();
		        jQuery(this).focus(function(){
		            if (jQuery(this).val() == swapValues[i]) {
		                jQuery(this).val("");
		            }
		        }).blur(function(){
		            if (jQuery.trim(jQuery(this).val()) == "") {
		                jQuery(this).val(swapValues[i]);
		            }
		        });
		    });
		});
	
});
