$(document).ready(function(){    
	$('.menu_video').each(function(){
		if ($(this).attr('id') && $(this).attr('id') != '') {
	    	var thisVid = $(this).attr('id').split('_');
	        swfobject.embedSWF("http://www.youtube.com/e/" + thisVid.pop() + "?enablejsapi=1&playerapiid=product_video", $(this).attr('id'), "300", "225", "8", null, null, generalFunctions.videoParams, generalFunctions.videoAtts);
	    }
	});
});

