
		var browserName = navigator.appName;
		var browserVer = parseInt(navigator.appVersion);
		var version = "";
		var msie4 = (browserName == "Microsoft Internet Explorer" && browserVer >= 4);
		if ((browserName == "Netscape" && browserVer >= 3) || msie4 || browserName=="Konqueror" || browserName=="Opera") {version = "n3";} else {version = "n2";}
			// Blurring links:
		function blurLink(theObject)	{	//
			if (msie4)	{theObject.blur();}
		}
		
jQuery(document).ready(function() {
	play_class = 'play';
	jQuery('#imagecycle_28').after('<div class="imagecycle-controller" id="imagecycle_28_controller"><ul><li class="first"><a id="imagecycle_28_first"></a></li><li class="prev"><a id="imagecycle_28_prev"></a></li><li class="pause"><a id="imagecycle_28_pause"></a></li><li class="next"><a id="imagecycle_28_next"></a></li><li class="last"><a id="imagecycle_28_last"></a></li></ul></div>');
	jQuery('#imagecycle_28_pause').click(function() {
		_parent = jQuery(this).parent();
		if(_parent.hasClass(play_class)) {
			_parent.removeClass(play_class);
			jQuery('#imagecycle_28').cycle('resume');
		} else {
			_parent.addClass(play_class);
			jQuery('#imagecycle_28').cycle('pause');
		}
	});
	jQuery('#imagecycle_28_first').click(function() {
		jQuery('#imagecycle_28').cycle(0);
	});
	jQuery('#imagecycle_28_last').click(function() {
		options = jQuery('#imagecycle_28').data('cycle.opts');
		jQuery('#imagecycle_28').cycle(options.elements.length - 1);
	});
	
	jQuery('#imagecycle_28').show().cycle({
		fx: 'fade',
		easing: 'easeInOutBack',
		speed: '3000',
		timeout: '600',
		sync: true,
		random: true,
		cleartypeNoBg: false,
		before: function(a,n,o,f) {jQuery('div', this).css('display', 'none');},
		after: function(a,n,o,f) {jQuery('div', this).animate({opacity: 'show'},200);},
		next: '#imagecycle_28_next',
		prev: '#imagecycle_28_prev'
		
	});
	
	
	jQuery('#imagecycle_28').parent().css('width', jQuery('#imagecycle_28').css('width'));
	
	
	jQuery('#imagecycle_28').parent().hover(function(){
		jQuery('#imagecycle_28_controller').stop(true,true).fadeIn('fast');
	}, function(){
		jQuery('#imagecycle_28_controller').stop(true,true).fadeOut('fast');
	});
	jQuery('div', jQuery('#imagecycle_28')).show();
});

