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','');});}}

checkother = 0;

jQuery(document).ready(function(){

isch = jQuery('#freind-other').attr('checked');

if(isch){

	checkother = 1;
	jQuery('#freind-specify').show();

}

jQuery('#freind-other').click(function(){

if(checkother == 0){

	checkother = 1;

	jQuery('#freind-specify').show();

}else{

	checkother = 0;

	jQuery('#freind-specify').hide();

}

});


propergateformfeild('#posted-name','Name');
propergateformfeild('#posted-email','E-mail');
propergateformfeild('#posted-telephone','Telephone Number');
propergateformfeild('#posted-natureofquery','Nature of Query');
propergateformfeild('#searcher','search website');

		jQuery('#slideshow ul').innerfade({
					speed: 2000,
					timeout: 5000,
					type: 'sequence',
					containerheight: '352px'
		
				});




});