jQuery(document).ready(function() {

$('div#cb_ppHeader h3').mouseover( function() {
		$(this).css({background:'url(/images/elements/coldwell_10/off/ppheader2b.gif) no-repeat'});
	});
	$('div#cb_ppHeader h3').mouseout( function() {
		$(this).css({background:'url(/images/elements/coldwell_10/off/ppheader2.gif) no-repeat'});
	});
	
$('#toggleh1').toggle(function() {
	$('div#cb_ppHeader h3').mouseover( function() {
		$(this).css({background:'url(/images/elements/coldwell_10/on/ppheader2b.gif) no-repeat'});
	});
	$('div#cb_ppHeader h3').mouseout( function() {
		$(this).css({background:'url(/images/elements/coldwell_10/on/ppheader2.gif) no-repeat'});
	});
	$('div.cb_ppHolder').show("slow");
	},function() {
		$('div#cb_ppHeader h3').mouseover( function() {
			$(this).css({background:'url(/images/elements/coldwell_10/off/ppheader2b.gif) no-repeat'});
			});
		$('div#cb_ppHeader h3').mouseout( function() {
			$(this).css({background:'url(/images/elements/coldwell_10/off/ppheader2.gif) no-repeat'});
			});
		$('div.cb_ppHolder').hide("slow");
	});
	
 $('ul#cb_navContainer').fadeIn("slow", function() {
 	$('ul#cb_contactContainer').fadeIn("slow", function() {
 		$('div#cb_articles, h3 div, div#cb_logo').show("slow", function() {
 			$('div#cb_articlesContent').show("slow");
  			});
 		});
	});
});
