﻿/**
*	Javascript Tools based on jquery
*
*	@date		2009-03-04
*	@author		Michal Gondar
*	@copyright	Live Nation (Music) UK
*   @require    jquery
*   @jquery     jquery-1.3.1.min.js
*
*/


/*
 *  Initialize flash gallery
 */
$(document).ready(function() {

    // Get QueryString
    var qs = location.search;
    if (qs == '') {
        var search_term = {
            s_type: 'DEFAULT',
            s_string: 'DEFAULT'
        };
    } else {
        var s = qs.split('?')[1];
        var search_term = {
            s_type: s.split('=')[0],
            s_string: s.split('=')[1]
        };
    }

    // flash size
    var width = "630";
    var height = "540";

    var flashVars = {width: width, height: height, xmlfile: '/gallery/gallery.aspx?galleryName=' + search_term['s_type'] + '_' + search_term['s_string']};
    var params = {allowfullscreen: "true", wmode: 'transparent' };
    swfobject.embedSWF("/_Resources/flash/gallery.swf", "flashGallery", width, height, "7", "/_Resources/flash/expressInstall.swf", flashVars, params, false);

});