/**
 * jq_selVideo Jan 2011 Version 1.0
 * Maritta Sturt
 * Copyright (c) M. Sturt 
 */


$(function() {

	if ($.browser.msie) {
		$('#sel_video select').attr('onChange','selVideo();');
		//$('input').attr('onChange','validate();');
	}

	$('#sel_video select').change(function() {
		selVideo();
	});
/*	
	$('input').change(function() {
		validate();
	});
	*/

	$('#content').hover(function() {
		$('#sel_video').stop(true, true).show(700);
	}, function() {
	/*
	alert($(this).attr('id'))
  var o = $(this);
  var out = '';
  for (var p in o) {
    out += p + ': ' + o[p] + '\n';
  }
  alert(out);
  */
	});
	$('#sb_left, #sb_right').hover(function() {
		$('#sel_video').stop(true, true).hide(700);
	//alert($(this).toSource())
	}, function() {
	});
	
});//function

	
function selVideo() {

	var sel = $('select[name=video_list]').val(); 
	var str = '';
	
	switch(sel) {
		case "1":
			str = '<object width="320" height="259"><param name="movie" value="http://www.youtube.com/v/GCRBc1Te7hU&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/GCRBc1Te7hU&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="320" height="259" wmode="transparent"></embed></object>';
			break;
		case "2":
			str = '<object width="320" height="259"><param name="movie" value="http://www.youtube.com/v/C6Pb22ceFZw&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/C6Pb22ceFZw&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="320" height="259" wmode="transparent"></embed></object>';
			break;
		case "3":
			str = '<object width="320" height="259"><param name="movie" value="http://www.youtube.com/v/eXQ6en2CZqM&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/eXQ6en2CZqM&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="320" height="259" wmode="transparent"></embed></object>';
			break;
		default:
	}
	
	$('#video').html(str);	
};
