	 function videoGallery(mi,options){
	
		var defaults = {
			w: 320,
			h: 240,
			holderDiv: '#video-holder',
			src: 'rel',
			showTitle: true,
			title: 'title',
			titleLoc: '#video-title'
		};
		
		var options = defaults;//$.extend(defaults, options);
		var element = mi;
		
		src = $(mi).attr(options.src);
		title = $(mi).attr(options.title);
		
		$(options.holderDiv)
			.html('<object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/'+src+'?fs=1&amp;hl=hu_HU"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="opaque"></param><embed src="http://www.youtube.com/v/'+src+'?fs=1&amp;hl=hu_HU" type="application/x-shockwave-flash" width="425" height="349" allowscriptaccess="always" allowfullscreen="true" wmode="opaque"></embed></object>');
         
	}(jQuery);


jQuery(document).ready(function($){
	$('.video').click(function(){videoGallery(this);});
});
