
var $j = jQuery.noConflict();

var videobar = {
	init: function() {
		$j(".image-thumb").mouseover(videobar.mouseover);

	},
	mouseover: function() {
		id = $j(this).attr("rel");

		var html = $j("#preview-"+id).html();
		$j("#preview").html(html);

		var infohtml = $j("#info-"+id).html();
		$j("#infobar").html(infohtml);

	}

}
$j(videobar.init);