$(document).ready(function(){
	
	$('h2 a.expand').live('click', function(e){
		e.preventDefault();
		$(this).parent().next().slideDown('fast');
		$(this).addClass('collapse');
		$(this).removeClass('expand');
	});
	
	$('h2 a.collapse').live('click', function(e){
		e.preventDefault();
		$(this).parent().next().slideUp('fast');
		$(this).addClass('expand');
		$(this).removeClass('collapse');
	});
	
	$('#contact-form').validate();
	
	$('#twitter_update_list a').attr("target","_blank");
	
	/* dsidxpress reformatting */
	
	$('div.idx link').detach();
	
	$('a.dsidx-photo img').each(function(){
		var targ = $(this).attr('src');
		targ = targ.replace('-thumb', '-full');
		$(this).attr('src', targ);
	});
	
	
	$('div.dsidx-slideshow ul li').each(function(){
		
		var targ = $(this).children('a.dsidx-photo').attr('href');
		$(this).children('p:last-child').append('<br/> ');
		if ($('div.nobuttons').length == 0) {
			$(this).children('p:last-child').append('<a href="'+targ+'#dsidx-contact-form-header" class="button">send an inquiry</a> ');
			$(this).children('p:last-child').append('<a href="'+targ+'" class="button">property details</a>');
		}
		$(this).append('<br style="clear:both;" />');
		
	});
	
	
	$('div.dsidx-search-widget table td[colspan="2"]').each(function(){
		$(this).attr("colspan", "1");
		$(this).before('<td><label>Property Type</label></td>')
	});
	
});
