jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery('img').each(function() {
		if (jQuery(this).width() > screen.width) {
			jQuery(this).width(0.9 * screen.width).height(0.90 * screen.height);
		}
	});
});
