
		jQuery.noConflict();
		jQuery(function(){
			//get the top nav width
			top_nav_width = jQuery("#top_nav").width();
			top_nav_width = top_nav_width + 1;
			jQuery("#top_nav_wrapper").width(top_nav_width);
			
			//change recipe colors
			jQuery(".leading_recipies").each(function(){
				temp_h2 = jQuery(this).html();
				if (temp_h2.indexOf("Gin") > -1) { jQuery(this).addClass('gin_color'); }
				if (temp_h2.indexOf("Plantation") > -1) { jQuery(this).addClass('plantation_color'); }
				if (temp_h2.indexOf("Whiskey") > -1) { }
			});
			
			//change featured recipe colors
			fr_text = jQuery(".moduletable_featured_recipe").html();
			if (fr_text.indexOf("Gin") > -1) { jQuery(".featured_recipe_title").addClass('gin_color'); }
			if (fr_text.indexOf("Plantation") > -1) { jQuery(".featured_recipe_title").addClass('plantation_color'); }
			if (fr_text.indexOf("Whiskey") > -1) { }
			
			//add specif bacckground for products
			if( jQuery("h2.contentheading").length != 0 ){
				p_h2 = jQuery("h2.contentheading").html();
				//if( p_h2 == '' ) p_h2 = jQuery("h1 .componentheading").html();
				if( p_h2 !== '' ){
					if( p_h2.indexOf("Plantation") > -1 ) { jQuery("#main_content").addClass('main_plantation'); }
					if( p_h2.indexOf("Southern Vodka") > -1 ) { jQuery("#main_content").addClass('main_southern'); }
					if( p_h2.indexOf("Gin") > -1 ) { jQuery("#main_content").addClass('main_gin'); }
					if( p_h2.indexOf("Whiskey") > -1 ) { jQuery("#main_content").addClass('main_whiskey'); }
				}
			}
		});

