jQuery(document).ready(function($) {
	(function($) {
		$('.ajaxCMSLink a').bind('mouseover',function(el) {
			$(this).parent().children('.ajaxCMSContent').css('display', 'block');
			$(this).css('backgroundColor', '#F7931E');
			$(this).css('color', '#ffffff');
		});
		$('.ajaxCMSLink a').bind('mouseout',function(el) {
			$(this).parent().children('.ajaxCMSContent').css('display', 'none');
			$(this).css('backgroundColor', 'transparent');
			$(this).css('color', '#7F7F7F');
		});
		
		$('.ajaxCMSLink .ajaxCMSContent').bind('mouseover',function(el) {
			$(this).css('display', 'block');
			$(this).parent().children('a').css('backgroundColor', '#F7931E');
			$(this).parent().children('a').css('color', '#ffffff');
		});
		$('.ajaxCMSLink .ajaxCMSContent').bind('mouseout',function(el) {
			$(this).css('display', 'none');
			$(this).parent().children('a').css('backgroundColor', 'transparent');
			$(this).parent().children('a').css('color', '#7F7F7F');
		});
		
	})(jQuery);

	jQuery.noConflict();

});
