var copy = ["",
"",
"Score! The Step2 inflatable Sports Bouncer is outfitted with a basketball hoop, air tee, and football goalposts. Ages 3+. Value: $399.",
"Spruce up your place! This generous gift card can buy a lot of what you need at IKEA. Value: $400.",
"Ahhh. You'll love this gift basket, packed with 6 great Aveeno products for you, plus 7 from Aveeno Baby! Value: $104.",
"Enter to win the Disney Pix digital camera, the Disney Mix Lights MP3 player, and the Disney Netpal netbook computer! Value: $439.",
"Outfit a whole exercise club -- win 5 pairs of the New Balance 1200 performance walking shoe and invite your friends to work out! Value: $600. ",
"",
"",
"Move and groove with the kids! Win a pair of Rollerblades for everyone in your family. Value: $500.",
"Pimp your ride with a $300 gift card from Jiffy Lube, then hit the road with a $100 gift card for Shell gas stations! ",
"Give your skin a treat! Enter to win a Neutrogena gift basket with their Ageless Restoratives, Rainbath, and Daily Repair products. Value: $106.",
"Make over your kid's room and save some space! Enter to win an all-in-one Youth Loft Bed. Value: $815.",
"Outfit your little princess with adorable classics from Greggy Girl with a gift card. Value: $250. ",
"",
"",
"This luxury ride comes loaded with all the extras: storage, seat belts, cup holders, a canopy, and more! Value: $250.",
"Yes, the whole shebang! Win the entire Baby Bj\u00F6rn collection -- carriers, potties, bouncy seats, and more! Value: $975.",
"Repair summer skin damage! This prize includes the Anti-Aging Eye Roller, UV Defense Lotion, 14 Day Skin Intervention, and Micro-Sculpting Cream. Value: $103.",
"Have a moveable feast with these on-the-go appliances from Hamilton Beach: a Thermal Cooler Blender, Single-Serve Blender, Deluxe Stay or Go\u2122 Slow Cooker, Ice Shaver and Brewstation Summit. Value: $210.",
"What not NOT to wear: Nab 8 bottoms and 6 tops from the Riders by Lee collection selected by Stacy London, 'What Not to Wear'. Value: $250.",
"",
"",
"They'll have a blast climbing up and sliding down the waterslides of the Little Tikes' Rocky Mountain River Race bouncer! Ages: 5-10 years. Value: $499.",
"Major swag alert: ChicExecs' Babes in Summerland gift basket is packed with amazing stuff for mom and baby, including jewelry, toys, clothes, bath gear, stationery, and so much more! Value: $1,141.",
"Includes EverPure shampoo and conditioner, 3 Revitalift skincare products, Colour Riche Anti-Aging Serum, and Extra-Volume Collagen Mascara. Value: $106.",
"Phone it in: Enter to win the new BlackBerry\u00AE Pearl\u2122 Flip 8230 smartphone from Verizon Wireless. Value: $149.",
"Stride in style! Aravon, maker of chic-yet-comfy shoes, is giving away all 9 styles from their Stridarc Collection! Value: $1350.",
"",
"",
"This drool-worthy fridge is totally tricked out with high-end extras such as the SpaceWise\u2122 Organization System, PureSource Ultra\u2122 Water Filtration, Energy Saver Plus, and much more! Value: $2549."];

var title = ["",
"",
"Step 2 Sports Bouncer",
"IKEA Gift Card",
"Aveeno Gift Basket for You and Baby",
"Get Disney Digital!",
"New Balance for You + 4",
"",
"",
"Rollerblades for the whole Family",
"Jiffy Lube and Shell Gift Cards",
"Neutrogena Gift Basket",
"Youth Loft Bed",
"Greggy Girl Gift Card",
"",
"",
"The Radio Flyer\u00AE Ultimate Classic Wagon ",
"Everything Baby Bj\u00F6rn Makes",
"Olay Regenerist Gift Basket",
"Hamilton Beach To Go",
"Riders by Lee",
"",
"",
"Little Tikes Bouncer",
"Babes in Summerland",
"L'Oreal Paris Total Beauty Package",
"BlackBerry\u00AE Pearl\u2122 ",
"Aravon Shoes",
"",
"",
"The New Frigidaire Professional Stainless Steel Refrigerator"];

var float_div = null;
var current_id = null;
$(document).ready(function(){
	float_div = $("#float_div");
	$(".image").each(function() {
		var date = new Date();
		
		var cur_date = null;
		if(date.getMonth() <7) {
			cur_date = 0;
		} else if(date.getMonth() > 7) {
			cur_date = 32;
		} else {
			cur_date = date.getDate();
		}
		
		
		if(this.id < cur_date) {
			this.innerHTML = '<img src="/images/motherDayGiveaway/Aug09/bw/gad_week'+this.id+'_bw.jpg" width="130" height="95" alt="Gad Week'+this.id+' Color" />';	
			this.className = 'disabled';
		} 
		else if(this.id % 7 == 1 || this.id % 7 == 2) {
			this.className = 'disabled';
		}
		else {
			this.className = 'enabled';
			$(this).click(function() {
				current_id = this.id;
				$('#day').text(this.id);
				$('#title').text(title[current_id-1]);
				$('#float_image').attr("src", "/images/motherDayGiveaway/Aug09/popup/gad_week"+current_id+"_popup.jpg");
				$('#copy_text').text(copy[current_id-1]);
				if(current_id == 2 || current_id == 9 || current_id == 16 || current_id == 23 || current_id == 30) {
					float_div.css('left', jQuery(this).offset().left - 120);
				} else {
					float_div.css('left', jQuery(this).offset().left);
				}
				float_div.css('top', jQuery(this).offset().top);
				//float_div.css('width', $('#float_image').attr('width'));
				
				float_div.stop(true, true);
				
				float_div.show();
				
				//var img_height = $('#float_image').outerHeight(true);
				//var txt_height = $('#copy_text').outerHeight(true);
				//var the_height = img_height + txt_height + 25	;

				//alert(img_height);
				//alert(txt_height);
				
				//alert(the_height);
				//float_div.height(the_height);
				

				
				$("#float_link").click(function() {
					float_div.stop(true);
					float_div.hide();
				})
			});
		}
	});
	
	$.preload('.enabled img', {
	    find: [/color/g,'.jpg'],
	    replace: ['popup','.jpg']
	});
});
