﻿$(document).ready(function() {
    $("a[href$='.mp3']").click(function() {
	    var flashvars = {
            file: this.href
            , title:$(this).html()
            , type: "sound"
            , allowscriptaccess:"always"
        };
        tb_show($(this).html(),"#TB_inline?height=400&width=500&inlineId=onPageHiddenContent", null);
        $('#TB_ajaxContent').html("<div id='flv1234'></div>");
        swfobject.embedSWF("Portaldata/1/resources/_internal/flashplayer/player.swf", "flv1234", "500", "375", "9.0.0", "Portaldata/2/resources/_intern/flashplayer/swfobject/expressInstall.swf", flashvars, {allowfullscreen:"true",bgcolor:"#ffffff"});
		return false;
	});
	
    $("a[href$='.flv']").click(function() {
		var altText = $(this).children("img:first").attr("alt");
		var flashTitle = "";
		if (altText != undefined && $.trim(altText) != "")	flashTitle = altText; else 	flashTitle = getTextRecursive(this.firstChild);
		
		var flashvars = {
            file: this.href
            , title: flashTitle
            , type: "video"
            , allowscriptaccess:"always"
        };
        tb_show(flashTitle,"#TB_inline?height=400&width=500&inlineId=onPageHiddenContent", null);
        $('#TB_ajaxContent').html("<div id='flv1234'></div>");
        swfobject.embedSWF("Portaldata/1/resources/_internal/flashplayer/player.swf", "flv1234", "500", "375", "9.0.0", "Portaldata/2/resources/_intern/flashplayer/swfobject/expressInstall.swf", flashvars, {allowfullscreen:"true",bgcolor:"#ffffff"});
		return false;
	});

/*
    $("a[href$='.swf']").click(function() {
        var altText = $(this).children("img:first").attr("alt");
        var flashTitle = "";
        if (altText != undefined && $.trim(altText) != "") flashTitle = altText; else  flashTitle = getTextRecursive(this.firstChild);
  
        var flashvars = { 
            title: flashTitle
            , type: "video"
            , allowscriptaccess:"always"
        };
       
        tb_show(flashTitle,"#TB_inline?height=700&width=900&inlineId=onPageHiddenContent", null);
        $('#TB_ajaxContent').html("<div id='flv1234'></div>");
        swfobject.embedSWF(this.href, "flv1234", "900", "675", "9.0.0", "Portaldata/1/resources/_internal/flashplayer/swfobject/expressInstall.swf", flashvars, { allowfullscreen: "true", bgcolor: "#ffffff" });
        return false;
    });

*/


    $(document).ready(function() {
        $("a[rel^='prettyPhoto']").prettyPhoto({
            showTitle: false
        });

    });
        

    
});

 
function getTextRecursive(node)
{
	var titleText = '';
	while (node != null)
	{
		if (node.nodeType == 3){titleText += node.nodeValue + " ";}
		if (node.hasChildNodes())
		{
			titleText += getTextRecursive(node.firstChild);
		}
		node = node.nextSibling;
	}
	return titleText;
}

