function clickdisplay(classe,ide){
i = 1;
jQuery(classe).each(function(){
jQuery(this).attr('title',i);
i++;
});
jQuery(classe).click(function(){
var_title = jQuery(this).attr('title');
jQuery(ide+' li').fadeOut();
jQuery(ide+var_title).fadeIn('slow');
});
}

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

jQuery(document).ready(function(){
jQuery('#gale').change( function() {

test = jQuery(this).attr('value');

window.location = test;
	

});



jQuery("#posted-dateofwedding").datepicker({dateFormat: 'dd-mm-yy', minDate: 0 });

propergateformfeild('#posted-name','Name');
propergateformfeild('#posted-email','E-mail');
propergateformfeild('#posted-tel','Tel');
propergateformfeild('#posted-dateofwedding','Date of Wedding');
propergateformfeild('#posted-address','Address');
clickdisplay(".gal","#pen");





});