﻿
// JavaScript Document
$(document).ready(function(){
    if($("#nMsaStore").attr("class") == "active" && $("#breadcrumb > ul > li").length > 1){ 
		  var resizeImage = $(".imageWCaption > img");
		  var resizeP = $(".imageWCaption > p");
		  var imageWidth = $(resizeImage).attr("width");
		  var imageHeight = $(resizeImage).attr("height");
		  if(imageWidth > 200){
			  diff = 200/imageWidth ;
			  newHeight = imageHeight * diff;
			  newWidth = imageWidth * diff;
			  $(resizeImage).css({width:newWidth, height:newHeight});
			  $(resizeP).css("width", newWidth);
		}
	}
});

