jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery('#circular-menu-wrapper .circle-menu-item').each(function(){
		var href = jQuery('.circular-menu-name a', this).attr('href');
		var src = jQuery('.circular-menu-name a', this).attr('rel');
		jQuery(this).mouseover(function(){
			jQuery('#circular-menu-feature a').attr('href', href);
			jQuery('#circular-menu-feature img').attr('src', src);
		});
		jQuery('<img/>')
			.css('display', 'none')
			.attr('src', src)
			.load(function(){jQuery(this).remove()})
			.appendTo('body');
	});
});

