jQuery.noConflict();

var api = {
	init: function() {
		jQuery('#prod .thumbs a').each(function(){
			var i = document.createElement('img');
			i.src = this.href;
		}).click(function(){
			jQuery('#prod .img img').attr({ src: this.href });
			return false;
		});
	}
};

jQuery(document).ready(api.init);

