$(document).ready(function(){
	$('.lightbox').lightBox({fixedNavigation:true});
});

$.fn.YouTube = function(options){
	
	var settings = {
		width : 500,
		height : 360
	};
	
	settings = jQuery.extend(settings, options ||{});
	
	return this.each(function(){
		var obj = $(this);
		
		var embed = '<object width="'+settings.width+'" height="'+settings.height+'">'+
				'<param name="movie" value="http://www.youtube.com/v/'+settings.video+'?fs=1&autoplay=1"></param>'+
				'<param name="allowFullScreen" value="true"></param>'+
				'<param name="allowScriptAccess" value="always"></param>'+
				'<embed src="http://www.youtube.com/v/'+settings.video+'?fs=1&autoplay=1"'+
				'  type="application/x-shockwave-flash"'+
				'  allowfullscreen="true"'+
				'  allowscriptaccess="always"'+
				'  width="'+settings.width+'" height="'+settings.height+'">'+
				'</embed>'+
			'</object>';
			
		obj.html(embed);
			
	});
};

