if (jQuery("body").attr("class")) {
var bodyclasses = jQuery("body").attr("class").split(" ");
var mpv = jQuery("#messages_product_view");
for (var a=0; a<bodyclases.length; a++) {
	if (bodyclasses[a].indexof("product-")==0) { // we are on a product page
	  if(mpv.find(".messages li.success-msg").length>0) {
			jQuery(".col-main").css("position","relative");
			pmv.find(".messages").css("width","auto");
			pmv.find(".messages li.success-msg").css("background-color","Transparent").css("border","none 0px Transparent").css("text-align","right");
			pmv.css("position","absolute").css("width","600px").css("height","30px").css("z-index","9").css("top","400px").css("right","11px");
		}
	}
}
}
