$(document).ready(function(){

   	// Set Hover Effect for CPAP Machines
	$('#cpap-machines-head a').css({'color' : '#FFFFFF'});
	$('#cpap-machines-head a').hover(
		function () {
			$(this).animate({ color: '#333333' }, 300);
		},
		function () {
			$(this).animate({ color: '#FFFFFF' }, 100);
		}
	);
	
	//Set Hover Effect for CPAP Masks
	$('#cpap-masks-head a').css({'color' : '#FFFFFF'});
	$('#cpap-masks-head a').hover(
		function () {
			$(this).animate({ color: '#333333' }, 300);
		},
		function () {
			$(this).animate({ color: '#FFFFFF' }, 100);
		}
	);
	
	//Set Hover Effect for CPAP Supplies
	$('#cpap-supplies-head a').css({'color' : '#FFFFFF'});
	$('#cpap-supplies-head a').hover(
		function () {
			$(this).animate({ color: '#333333' }, 300);
		},
		function () {
			$(this).animate({ color: '#FFFFFF' }, 100);
		}
	);
	
	//Set Hover Effect for CPAP Rebate
	$('#cpap-machines-rebate-head a').css({'color' : '#FFFFFF'});
	$('#cpap-machines-rebate-head a').hover(
		function () {
			$(this).animate({ color: '#333333' }, 300);
		},
		function () {
			$(this).animate({ color: '#FFFFFF' }, 100);
		}
	);
	
	//Set Hover Effect for CPAP Therapy
	$('#cpap-therapy-head a').css({'color' : '#FFFFFF'});
	$('#cpap-therapy-head a').hover(
		function () {
			$(this).animate({ color: '#333333' }, 300);
		},
		function () {
			$(this).animate({ color: '#FFFFFF' }, 100);
		}
	);
});




