
function propergateformfeild(idname,valuetext){
values = jQuery(idname).attr('value');
if(values != valuetext && values == undefined){
jQuery(idname).attr('value',valuetext);
jQuery(idname).click(function(){
jQuery(idname).attr('value','');});}}



jQuery(document).ready(function(){


	jQuery('#slideshow').cycle({
		fx:			'fade',
		timeout:	5000,
		speed:		1000
	});



	propergateformfeild('#posted-name','Name');
	propergateformfeild('#posted-email','Email');
	propergateformfeild('#posted-tel','Tel');
	propergateformfeild('#posted-message','Message');
	


/*
	var nav_width = 0;

	var nav = $('#nav');

	console.log(nav);

	jQuery('#nav li').each(function(){

		this_width = jQuery(this).width();

		nav_width += this_width;

	});

	nav.css('width', nav_width).css('visibility' , 'visible');
*/
});










