
	

$(document).ready(function() {
	$(document).ready(function() {
  	$("input[@type=radio]").css('border','0').css('width','auto');
  	$("input[@type=checkbox]").css('border',0).css('width','auto');
	});
});

$(document).ready(function() {

$(".fcecontent img").each(function() {
	var imgwidth;
	var maxwidth;
	maxwidth = 130;
	imgwidth = $(this).width();
	if(imgwidth > maxwidth){
		$(this).removeAttr("height").removeAttr("style").attr("width","130");
	}

});
});




$(document).ready(function() {

$("#leftcontent .fcehighlight img").each(function() {
	var imgwidth;
	var maxwidth;
	maxwidth = 130;
	imgwidth = $(this).width();
	if(imgwidth > maxwidth){
		$(this).removeAttr("height").removeAttr("style").attr("width","130");
	}

});

$("#right-col .fcehighlight img").each(function() {
	var imgwidth;
	var maxwidth;
	maxwidth = 130;
	imgwidth = $(this).width();
	if(imgwidth > maxwidth){
		$(this).removeAttr("height").removeAttr("style").attr("width","130");
	}

});

});




$(document).ready(function() {
	$("#right-col .fcecontent").width('130px').css('border','1px none');
});
