﻿$(document).ready(function(){
    // Search for all items with the class RolloverImage
    $(".RolloverImage").each(function(i){
        
      
        // Add OnMouseOver Function
        this.onmouseover = function(){
            var divpoint    = this.src.lastIndexOf(".");
            var path        = this.src.substring(0, divpoint);
            var extention   = this.src.substring(divpoint, this.src.length);
            if( this.src.indexOf("_sel") == -1) {                
                this.src = path + "_on" + extention; } 
                
        };
        
        // Add OnMouseOut Function
        this.onmouseout = function(){
            if( this.src.indexOf("_sel") == -1) { 
            this.src = this.src.replace("_on", "");
            }          
        };
       
    });
});

function OpenVideoPlayer(ItemID)
{
    window.open('/media/MediaPlayer.aspx?ItemID=' + ItemID,'USPM','width=500,height=625,directories=no,menubar=no,location=no,resizable=no,scrollbars=no');
}