$(document).ready(function() {
	   
	    
	    $('.form-section').hide();
	    
	    
	    var type = $('#ContactContactType option:selected').val();
	    
	 
	    
	    if(type != ''){
	    
	    	  $('#contact-' + type).show();
	    
	    }
	    
	    $('#ContactContactType').change(function(){
	    	 $('.form-section').hide();
	    	 type = $('#ContactContactType option:selected').val();
	    	 $('#contact-' + type).show();
	    	 
	    });
	    
	    
	   $("#ContactWeddingDate").datepicker({showOn: 'both', buttonImage: '/img/icons/date.gif', buttonImageOnly: true});	
		$("#ContactPortraitPreferredDate").datepicker({showOn: 'both', buttonImage: '/img/icons/date.gif', buttonImageOnly: true});
		$("#ContactCommercialPreferredDate").datepicker({showOn: 'both', buttonImage: '/img/icons/date.gif', buttonImageOnly: true});
		$("#ContactPortraitPreferredDate").datepicker({showOn: 'both', buttonImage: '/img/icons/date.gif', buttonImageOnly: true});
		$("#ContactWorkshopPreferredDate").datepicker({showOn: 'both', buttonImage: '/img/icons/date.gif', buttonImageOnly: true});


	 });  
