﻿$(document).ready(function() {


$(".upMenuIcon").hover(function() {


    $(this).fadeTo("slow", 0.7); // This sets the opacity to 70% on hover
}, function() {
    $(this).fadeTo("slow", 1.0); // This sets the opacity back to 100% on mouseout

});

$(".datepicker").datepicker($.datepicker.regional['he']);



    $(".generalIcon").hover(function() {


        $(this).fadeTo("slow", 0.7); // This sets the opacity to 70% on hover
    }, function() {
        $(this).fadeTo("slow", 1.0); // This sets the opacity back to 100% on mouseout

    });
    

    $(".searchImageLink").hover(function() {


        $(this).fadeTo("slow", 0.7); // This sets the opacity to 70% on hover
    }, function() {
        $(this).fadeTo("slow", 1.0); // This sets the opacity back to 100% on mouseout

    });

});

function PlayCampaign(campaignUrl) {

    //alert();

    var s1 = new SWFObject("../player/player.swf", "CampaignPlayer", "480", "360", "9", "#FFFFFF");
     s1.addParam("allowfullscreen","true");
     s1.addParam("allowscriptaccess","always");
     s1.addParam("flashvars", "file=../PublicMedia/Video/" + campaignUrl + "&autostart=true");
     s1.write("campaignPlayerDiv"); //the div id that contains the player

 }
 





   
