function change(left_id,left_img_src,right_id,right_img_src)
{
  document.getElementById(left_id).src = left_img_src;
  document.getElementById(right_id).src = right_img_src;
}
function changeBigImage(src,title)
{
  document.getElementById("flash_pic").style.display='none';
  document.getElementById("big_image").style.display='block';
 
  var big_img = document.getElementById("big_picture");
  big_img.src = src;
  big_img.alt = title;
  $('.container-in #main-content .image_frame .big_pic_description').html(title).fadeIn(100);   
}
function ChangeImageDescription(title)
{
  $('.container-in #main-content .property_image_frame .small_pic_description').html(title).fadeIn(100);   
}


function showFlash(source, width, height)
{
  AC_FL_RunContent(
    'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
    'FlashVars','',
    'width', width,
    'height', height,
    'src', source,
    'quality', 'high',
    'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'exactfit',
    'wmode', 'opaque',
    'devicefont', 'false',
    'id', 'flash_pic',
    'bgcolor', '#ffffff',
    'name', 'flash',
    'menu', 'true',
    'allowFullScreen', 'false',
    'allowScriptAccess','sameDomain',
    'movie', source,
    'salign', ''
  );
}