﻿function contact(msg){
    $.prompt(msg,{ buttons: { 'אישור': true},top:'30%' });
}
$(document).ready(function(){
     $('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    })
    $(".object,.objectmain").hover(
      function () {
        $(this).css("border-width","1px 2px 3px 1px");
        $(this).css("background-color","#C3CBDF");
      }, 
      function () {
        $(this).css("border-width","1px 1px 1px 1px");
        $(this).css("background-color","#E1E5F0");
      }
    )
 $("#ban").hover(
      function () {
        $("#ban").animate({left:"20"},"fast");
        $("#ban img").animate({width:"+=30",height:"+=55"},"fast")}, 
      function () {
        $("#ban").animate({left:"-10"},"fast");
        $("#ban img").animate({width:"-=30",height:"-=55"},"fast")}
    )
 $(window).scroll(function () {
    var scrollTop = $(window).scrollTop();
    if ($.browser.msie){ $("#ban").css("display", "none").css("top",(scrollTop+80)+"px").fadeIn("fast");}
    else{ $("#ban").css("display", "none").fadeIn("fast");}
    
 })
})