jQuery(document).ready(function($)
{
	$('.modal_open a').unbind('click');
		
    $('.modal_open a').click(function(event)
	{
		event.preventDefault();
		$.post(this.href, function(data)
		{
			$.modal(data, '', {
				'position':'fixed',
                'width': 700,
                'frameHeight' : '550px'
            }).find('.close').remove();			
		});
	});
});

jQuery(document).ready(function()
{
	$('.write_comment').click(function()
	{
		var target = $('#tabs');
		$('html').animate({
			scrollTop : $(target).offset().top
		},2000);  
	});
});

jQuery(document).ready(function()
{
	$('.propertiesHead').addClass('active');
	$('.slideContainer').show();
});
