jQuery(document).ready(function($){

	var get_collection = function(){
		var collection;
		if (
			(typeof window.flashvars === 'object') &&
			(typeof window.flashvars.imageName === 'string')
		){
			collection = window.flashvars.imageName.replace(new RegExp('^\\s*SerenaandLily/'), '').toUpperCase();
		}
		return collection;
	};

	var is_parent_tab = function(tab_pattern){
		var is_child;
		try {
			if (
				$('#slb_bread_crumbs, #slb_bread_crumb').first().text().match(new RegExp('^\\s*' + tab_pattern + '\\b', 'i')) !== null
			){
				is_child = true;
			}
		}
		catch(e){
			is_child = false;
		}
		return is_child;
	};

	var debug = 0;
	var collection, img_url, div_style;
	if (is_parent_tab('Bedding')){
		collection = get_collection();
		if (typeof collection === 'string'){
			if ($.inArray(
				collection,
				["HERO-DV32","HERO-CTL1","HERO-VEN1","CLASSICWHITE_GRASS-CAT","CLASSICWHITE_BARK-CAT","CLASSICWHITE_AQUA-CAT","CLASSICWHITE_NAVY-CAT","CLASSICWHITE_BERRY-CAT","CTL1-ES","VEN1-ES","DV32-ES","BSH05-ES","BSH03-ES","BSH02-ES","BSH01-ES","BSH04-ES","BSH05","BSH03","BSH02","BSH01","BSH04","BSS05","BSS03","BSS02","BSS01","BSS04","RNGS1","PMTO","DSS30","TREL","STRL","ATRL","MTRL","BA203","BA201","BA202","BA206","BA205","BA204","BA207","BA208","D06-G202","D06-TL1","D06-TL2","D06-TL3","D06-IN1","D06-IN2","D06-IN3","D06-G206","D06-DD3","D06-DD1","D06-DD2","D06-DD4","D06-DD5","D06-DD7","D06-DD6","D06-IN5","D06-IN4","D06-IN6","D06-G219"]
			   ) !== -1
			){
				if (debug === 1){
					img_url		= '/site/left/x.gif';
					div_style	= 'clear:both; display:none;';

					if ((typeof console === 'object') && (typeof console.log === 'function')){
						console.log('Attention Mary: we have joy!');
					}
				}
				else {
					img_url		= '/site/landing_pages/2011.05.05_make_your_bed/img/peripheral_marketing/banner.jpg';
					div_style	= 'clear:both; padding-top:10px; width:271px; height:127px; margin:0px;';
					if (debug === 2){
						div_style = div_style + ' display:none;';
					}
				}
				$('#collectionProduct #categoryDescriptionArea .descriptionArea-2 .displayDescription').add(
						  $('#product #categoryDescriptionArea .descriptionArea-2 .displayDescription')
				).first().append(
					$('<div id="makeyourbed_link" style="' +div_style+ '"><a href="/makeyourbed"><img src="' +img_url+ '" /></a></div>')
				);
			}
		}
	}

});
