(function($) {
			  
	$.fn.vinuNavigation = function(options) {
		settings = $.extend({}, {
			textColor:			"#FFFFFF"
		,	textColorActive: 	"#FFFFFF"
		,	htmlURL:			"www.vinuconsult.nl/inc.menu.php"
		}, options);
			
		var htmlContent = $(this).html();
		htmlContent = htmlContent.split("class=clearfix").join('class="clearfix"');
				
		$(this).flash({
			swf: 		"/swf/navigation.swf", 
			width:		"100%",
			height:		"100%",
			params: {
				wmode:		"transparent",
				allowScriptAccess: 'always'
			},
			flashvars:	{
				htmlURL:			settings.htmlURL
			,	textColorActive:	settings.textColorActive
			,	textColor:			settings.textColor
			,	activeTitles:		$("li.active:last a:first").text()
			}
		});
		
		return this;
	}
})(jQuery);
