// JavaScript Document
var jukeboxWindow=null;


function openJukebox(type,itval){
	
//alert('open jukebox called');

//jukeboxWindow=window.open('/store/jukebox.php?'+type+'='+itval,'jukeboxWindow','width=465,height=246,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes');


jukeboxWindow=window.open('/store/jukebox2.php?'+type+'='+itval,'jukeboxWindow','width=276,height=396,toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,titlebar=yes');

jukeboxWindow.document.title='Merge Records';


}



function thisMovie2(movieName) {
        var isIE = navigator.appName.indexOf("Microsoft") != -1;
        return (isIE) ? window[movieName] : document[movieName];
}

function queueSong(song_id){
	
	if(jukeboxWindow!=null){
		
		jukeboxWindow.queueSong(song_id);
		jukeboxWindow.focus();
		
	}else{

		openJukebox('song_id',song_id);
	
	}
	
	
}

function queueCatalog(catalog_id){
		
		
		if(jukeboxWindow!=null){
			
			jukeboxWindow.queueCatalog(catalog_id);
			jukeboxWindow.focus();
		
		}else{

			openJukebox('catalog_id',catalog_id);
	
	    }
	
	
	
}
//
$(document).ready(function(){
	$("table#tracklist");
	$("tr:nth-child(odd)").addClass("odd");
	$('#bio').expander();
	$('.lightbox_image').lightBox();
});
