// -------------------------------------------------------------------------------
// JavaScript Functions
// Copyright Property Designers Inc.
// -------------------------------------------------------------------------------

$(function(){
  $("#jstyle").attr({href:$.cookie('style')});
});

function jstyle(cssurl){
  $('#jstyle').attr({href:cssurl});
  $.cookie('style',cssurl,{expires:30,path:'/'});
}

function jstyle_prds(mode){
  if(mode==""){ mode = "s"; }
  var base = "/common/obj/fc/" ;
  var cssurl = base + "style_" + mode + ".css";

  if(mode=="m"){
    document.btn_s.src = base + "btn_s" + "_of.gif";
    document.btn_m.src = base + "btn_m" + "_ov.gif";
    document.btn_l.src = base + "btn_l" + "_of.gif";
  } else if(mode=="l"){
    document.btn_s.src = base + "btn_s" + "_of.gif";
    document.btn_m.src = base + "btn_m" + "_of.gif";
    document.btn_l.src = base + "btn_l" + "_ov.gif";
  } else {
    document.btn_s.src = base + "btn_s" + "_ov.gif";
    document.btn_m.src = base + "btn_m" + "_of.gif";
    document.btn_l.src = base + "btn_l" + "_of.gif";
  }


  $('#jstyle').attr({href:cssurl});
  $.cookie('style',cssurl,{expires:30,path:'/'});
}

function jstyle_init(){
  var mode = "s";
  var base = "/common/obj/fc/" ;
  var cssurl = base + "style_" + mode + ".css";

  $('#jstyle').attr({href:cssurl});
  $.cookie('style',cssurl,{expires:30,path:'/'});
}

// ------------------------------------------------------------ End Script File --

