$(document).ready(function()
			{
			
				$(".clsColumnMore a").toggle(
					function () {
						$(this).parents(".clsColumnMore").siblings(".accordionContent").slideDown("normal");
						$(this).html('Hide<img src="site-includes/images/arrowup.jpg" alt=""/>');
					},
					function () {
						$(this).parents(".clsColumnMore").siblings(".accordionContent").slideUp("normal");
						$(this).html('More<img src="site-includes/images/arrowdown.jpg" alt=""/>');

					}
				); 
				
				$(".accordionContent").hide();

				$(".clsRollOver").css({'opacity':'0'});
					   
				$('#divColumnOne a').hover(
					function() {
						$(this).find('.clsRollOver').stop().fadeTo(800, 1.00);
					},
					function() {
						$(this).find('.clsRollOver').stop().fadeTo(800, 0.00);
					 }
				)
				
				$('#divColumnTwo a').hover(
					function() {
						$(this).find('.clsRollOver').stop().fadeTo(800, 1.00);
					},
					function() {
						$(this).find('.clsRollOver').stop().fadeTo(800, 0.00);
					 }
				)
				
				$('#divColumnThree a').hover(
					function() {
						$(this).find('.clsRollOver').stop().fadeTo(800, 1.00);
					},
					function() {
						$(this).find('.clsRollOver').stop().fadeTo(800, 0.00);
					 }
				)
				
				
			});
