jQuery(document).ready(function(){
//alert("jQuery active");
jQuery(".ngg-gallery-thumbnail p a").each(function (arr){
if (jQuery(this).attr("title").substr(0,5)=="Video"){

var thereltagraw = jQuery(this).attr("rel");
//alert("rel ="+thereltagraw);
var	tmpPosNo=thereltagraw.indexOf("]");
var thereltag = jQuery(this).attr("rel").substr(0,tmpPosNo);

jQuery(this).attr("rel", thereltag + "];width=512;height=348");
jQuery(this).attr("href",jQuery(this).children("img").attr("title"));
}
})


});