$(document).ready(function(){
    $('div.offer').flash(
        { src: $('#baseUrl').val() + '/images/buttons/flash/offer_' + $('#i18n').val() +'.swf',
          width: 151,
          height: 153,
          flashvars: { baseUrl: $('#baseUrl').val() }
           },
        { version: 8 }
    );
    
    // png fix
   	$(document).pngFix(); 
   	
   	// change the preview image in the detail view
   	$('p.tumbs img').bind('click', function() {
   		$('#imagePreview').attr('src', ($(this).attr('src')) );	
   	})
   	
   	$('#typeSelect').change( function() {
   		window.location = $(this).val();
   	})
   	$('#dwellingTypeSelect').change( function() {
   		window.location = $(this).val();
   	})
   	var captcha_text = $('#ins_code').text();
   	$('#captcha_code').before('<div class="captcha_text">' + captcha_text + '</div>');
});
