$(document).ready(function(){
	var image = new Image();
	z=0;
	$(".loginSlider").click( function() 
	{
		if (z==0) {
			$("#login form").css("display","block");
			$(this).css("backgroundPosition","0 -18px");
			$("#login").animate({"top":-57},500);
			z=1;
		}
		else if (z==1) {
			$(this).css("backgroundPosition","0 0");
			$("#login").animate({"top":-26},500);
			z=0;
		}
		return false;
	});
	
	if ($.browser.msie) 
	{
		$("#mainContentWrapper").css("z-index","-1");
	}
						   
	$('#logoHolder span').css("opacity","0.7");
						   						   
	$('input[type="text"], input[type="password"], textarea').focus(function() {
		if(this.value==this.defaultValue)this.value='';
		});

	$('input[type="text"], input[type="password"], textarea').blur(function() {
		if(this.value=='')this.value=this.defaultValue;								  
		});
	
	$("input[type=checkbox], input[type=radio]").checkBox();

        $("a.imagesss").fancybox({'centerOnScroll' : true});
        

});

function openImage( image, id ) {
    if($('#videoPreview').attr('style') != null){
        $('#videoPreview').attr('style','visibility:hidden').css({'float':'','position':'','width':''});
        $('#videoPreview').empty();
        $('#photoPreview').attr('style','visibility:').css({'float':'left','position':'relative','width':'541px'});
    }
    $('#photoPreview img').fadeOut('slow', function() {
    $('#photoPreview img').remove();
    $('#photoPreview').append('<div id="loader" style="width:541px; height:324px;"><img src="./assets/images/spinner.gif" alt="" id="back" style="opacity:1; margin-top:150px;margin-left:258px;" /></div>');
    var img = new Image();
    $(img)
    .load(function () {
      $(this).hide();
      $('#photoPreview div').remove();
      $('#photoPreview')
        .append('<img src="./assets/images/realestates/medium/'+image+'" alt="" id="back" style="opacity:1" />');
      $(this).fadeIn();
    })
    .error(function () {
      // notify the user that the image could not be loaded
    })
    .attr('src','./assets/images/realestates/large/'+image);
    $('#photoPreview img').fadeTo('slow', 1);
    $('.imagesss').attr('style','visibility:hidden');
    $('a#'+id).attr('style','visibility:');
      });
}

function openVideoPlayer( video, base ) {

 $('#photoPreview img').fadeOut('slow', function() {
 $('#photoPreview').attr('style','visibility:hidden').css({'float':'','position':'','width':''});
 $('#videoPreview').attr('style','visibility:').css({'float':'left','position':'relative','width':'541px'});
 $('#videoPreview').append('<div id="player_holder" width="541" height="324"></div>');

 var flashvars = { MediaLink: base+"assets/videos/"+video, playOnStart:"true", autoHideVideoControls:"true" };
 var params = { allowFullScreen:"true" };
 var attributes = {};

 swfobject.embedSWF(base+"assets/swf/video_player/video_player.swf", "player_holder", "541", "324", "9.0.0", false, flashvars, params, attributes);
 });
}

