$(document).ready(function() {

    $('.video-link').click(function() {
        ShowVideos($(this).attr('rel'));
    });
});

function ShowVideos(filecode) {

	$("#researchVid").empty();
    var version = deconcept.SWFObjectUtil.getPlayerVersion(); //uses SWFobject.js to generate flash video
	
	var s1 = new SWFObject('http://www.youtube.com/v/' + filecode, 'ply', '580', '360', '9', '#ffffff');
	s1.addParam('allowfullscreen', 'true');
	s1.addParam('allowscriptaccess', 'always');
	s1.addParam('wmode', 'opaque');
	if (version["major"] > 6) {          
		s1.write('researchVid');
	}
	else {
		$('#researchVid').append("<p style=\"padding: 10px\">You don't have the latest version of the Flash player to play this video. Please click <a style=\"color:Blue\" href=\"http://www.adobe.com/products/flashplayer/\">this link</a> to update your player.</p>");
		$("#researchVid>p").css({ "width:80%": "", "": "" });
	}

	$('#researchVid').prepend("<p style=\"padding: 10px\">&nbsp;</p>"); //spacer for IE7
	$('#vidClick').attr("href", "#TB_inline?height=440&width=590&inlineId=researchVid");

    $('#vidClick').click(); // clicks thickbox link
}