$(function() {
	$('form input.text_placeholder').each(function() {
		var $input = $(this);
		var placeholder = $input.val();
		
		$input.focus(function() {
			$input.removeClass('text_placeholder').val('');
		}).blur(function() {
			if ($input.val() == '') {
				$input.addClass('text_placeholder').val(placeholder);
			}
		});
	});
	
	$('.fancybox_vtour').fancybox({
		'padding'	: 0,
        'autoScale'	: true,
		'width'		: 399,
		'height'	: 300
	});
});

$(window).load(function() {
	if ($.browser.msie) {
		$('.img_shadow, .box_shadow').each(function() {
			var $img = $(this);
			$img.parent().css('position', 'relative');
			
			$('<div/>').insertAfter($img).addClass('ie_box_shadow').css({
				'filter'	: "progid:DXImageTransform.Microsoft.Blur(PixelRadius='3', MakeShadow='true', ShadowOpacity='0.40')",
				'width'		: $img.width(),
				'height'	: $img.height(),
				'top'		: 0,
				'left'		: 0
			});					   
		});
	}
});