$(document).ready(function(){
    $("div.phone").hover(function () {$(this).append($("<div></div>"));}, 
      function () {
        $(this).find("div:last").remove();
      }
    );
    $("div.price").hover(function () {$(this).append($("<div></div>"));}, 
      function () {
        $(this).find("div:last").remove();
      }
    );
    $("div.folio").hover(function () {$(this).append($("<div></div>"));}, 
      function () {
        $(this).find("div:last").remove();
      }
    );
    $("div.services").hover(function () {$(this).append($("<div></div>"));}, 
      function () {
        $(this).find("div:last").remove();
      }
    );
    $("div.news").hover(function () {$(this).append($("<div></div>"));}, 
      function () {
        $(this).find("div:last").remove();
      }
    );
var wid = $(document).width();
if(wid <= 1150){
$(document.body).css("min-width", "1000px");
$("div.sofa").css({background: 'url("img/size1024/sofa.png")', width: "22%", margin: "0"});
$("div.fridge").css({background: 'url("img/size1024/refrigerator.png") no-repeat', position: "relative", 'z-index':2, right:0, 'min-width': "174px", width: "17%", 'background-position': "right", margin: "0"});
$("div.table").css({width: "60%", margin: "0"});
};



});

