/**
 * @author ccortes
 */
var boxes = {
	blueBoxOptions : {
		bgColor: "#78acc4",
		topImage: "/healthcare/images/common/bgSidebarBoxTop.png",
		bottomImage: "/healthcare/images/common/bgSidebarBoxBottom.png",
		className:"marginBottom10"
	},
	darkBlueBoxOptions : {
		bgColor: "#193d58",
		topImage: "/healthcare/images/common/bgSidebarDarkBlueBoxTop.png",
		bottomImage: "/healthcare/images/common/bgSidebarDarkBlueBoxBottom.png",
		className:"marginBottom10"
	},
	orangeBoxOptions : {
		bgColor: "#e26c2e",
		topImage: "/healthcare/images/common/bgSidebarOrangeBoxTop.png",
		bottomImage: "/healthcare/images/common/bgSidebarOrangeBoxBottom.png",
		className:"marginBottom10"
	},
	whatsNewBoxOptions : {
		bgColor: "#89b8ce",
		topImage: "/healthcare/images/common/bgSidebarWhatsNewBoxTop.png",
		bottomImage: "/healthcare/images/common/bgSidebarWhatsNewBoxBottom.png",
		className:"marginBottom10"
	},
	faqBoxOptions : {
		bgColor: "#78acc4",
		topImage: "/healthcare/images/common/bgSidebarBoxTop.png",
		bottomImage: "/healthcare/images/common/bgSidebarBoxBottom.png",
		className:"marginBottom10"
	},
	init: function(){
		$(".blueBox").boxes(this.blueBoxOptions);
		$(".darkBlueBox").boxes(this.darkBlueBoxOptions);
		$(".orangeBox").boxes(this.orangeBoxOptions);
		$(".whatsNewBox").boxes(this.whatsNewBoxOptions);
		$(".faqBox").boxes(this.faqBoxOptions);
		$("#section3").boxes(this.blueBoxOptions);
	}
};

$(document).ready(function(){
	boxes.init();
});
