var st=new Array(1,1,1,1,1,1,1,1,1,1,1,1);
var st_mp3=new Array(
'Black_Dog_lead_Riff_N1',
'Black_Dog_lead_Riff_N1-2',
'SS Give Me the Simple Life Oscar Peterson',
'SS Give Me the Simple Life Oscar Peterson - half',
"SS Ya See What I'm Sayin",
"SS Ya See What I'm Sayin - half",
'SS Ave Maria',
'SS Ave Maria Pitch',
'SS Life In The Fast Lane',
'SS Life In The Fast Lane Pitch',
'SS The Royal Wedding March',
'SS The Royal Wedding March Pitch'
);
//-----------------
$(document).ready(function() {
	//-------
	insert_time_date();
	//-------
	$(".st2").click(function() {
		id=$(this).attr("id").substring(4)-1;
		$(this).removeClass();
		switch(st[id]) {
			case 1:
			$(this).addClass("stop_start_img");
			$("#for_embed_src").html('<embed src="/base/mp3/'+st_mp3[id]+'.mp3" autostart="true" hidden="true" loop="true">');
			st[id]=2;
			break;
			case 2:
			$(this).addClass("start_stop_img");
			$("#for_embed_src").html('');
			st[id]=1;
			break;
		}
		$(this).addClass("st2");
		return false;
	});
	//-------
	tezhi_links();
	//-------
	$("#satisfaction_guaranteed").click(function() {
		window.open("http://www.songsurgeon.com/guarantee.html","_blank");
	});
	//-------
	$(".video_of_SS_being_used").click(function() {
		switch($(this).attr('id').substring(23)) {
			case '0':
			window.open("http://www.songsurgeon.com/video/loopeditor/loopeditor.html","_blank");
			break;
			case '1':
			window.open("http://www.songsurgeon.com/video/SSinstall-register.html","_blank");
			break;
		}
	});
	$(".video_of_SS_being_used, #satisfaction_guaranteed").mouseover(function() {
		$(this).css('cursor','pointer');
	});
	//-------
	var qwqw=navigator.appName;
	if(qwqw=='Netscape') {
		$("#dfmdrhhhjkiulu").css('left','337px');
	}
	//-------
});
//-----------------
function tezhi_links() {
	$(".tezhi").each(function() {
		$(this).find('div:eq(1)').append('<div style="float:right; margin-top:-25px; font-size:0.9em;"><b><i><a style="color:#CC0000;" href="./testimonials.php">More Customer Comments</a></i></b></div>');
	});
}
//-----------------