﻿$(document).ready(function(){
	var icons = {"Hot":"burst.png", "Cool":"ring.png", "Warm":"flower.png", "Green":"burst2.png"};
	var imgrt = "/SiteCollectionImages/RailIcons/";
	var theme = $("#themewriter").html();
	$(".themed").hide();
	$(".themed").addClass(theme);
	$(".themed").show();
	
	$(".me-right-rail .ms-WPBody").hide();
	$(".me-right-rail .ms-WPBody").addClass(theme);
	$(".me-right-rail .ms-WPBody").show();
	
	if(theme != null && theme.length > 1){
		$(".me-right-rail .image-area-left img").each(function(){
			$(this).attr("src", imgrt + icons[theme]);			
		});
	}
});
