jQuery(document).ready(function($){


	//Form Default Values
	$(".replacedefault input[type=text], .replacedefault textarea").bind('focus', function(){
		var currentValue = $(this).attr("value");
		var defaultValue = $(this).attr("defaultValue");
		if (currentValue == defaultValue) $(this).attr({ value: ""});
	});
	$(".replacedefault input[type=text], .replacedefault textarea").bind('blur', function(){
		var currentValue = $(this).attr("value");
		var defaultValue = $(this).attr("defaultValue");
		if (currentValue == '') $(this).attr({ value: defaultValue});
	});

	/*/ SLIDESHOW
	$("#homeslideshow").innerfade({
		animationtype: 'fade',
		speed: 2000,
		timeout: '5000',
		type: 'sequence'
	});
	
	*/


	
});
