jQuery(document).ready(function() {
	
	jQuery("a.ajax").live("click", function (event) {
	    jQuery.get(this.href);
	    return false;
	});
	
	//ajax spinner
	jQuery(function () {
		jQuery('<div id="ajax-spinner"><span></span></div>').hide().ajaxStart(function () {
			jQuery(this).show();
	  	}).ajaxStop(function () {
	  		jQuery(this).hide();
	  	}).appendTo("#content");
	});

	jQuery('#ajax-spinner').css('opacity','0.50');
	
	jQuery('#linkFlashBannerTop').hover( function() {
		jQuery(this).css('background','#FFF');
		jQuery(this).css('opacity','0.1');
	}).mouseout(function() {
		jQuery(this).css('background', 'none');
	});
	  
});