var $j = jQuery.noConflict();
var replacementstuff = '<div id="centerwedge1" class="sliderpane"><img src="wp-content/uploads/2010/08/dude.png" alt="" title="dude" width="171" height="109" class="alignleft size-full wp-image-201" />You help your clients with <strong>ROI</strong>. We help you with  <strong>ROP</strong>...<br /><em><strong>ROP = Return On People</strong>™.</em></div>'
+ '<div id="cv1" class="centervert">&nbsp;</div>'
+ '<div id="centerwedge2" class="sliderpane"><img src="wp-content/uploads/2010/11/rulers.png" alt="" title="rulers" width="171" height="109" class="alignleft size-full wp-image-255" /><strong>Objectivity</strong> is essential. <br />Get  <strong>measurable</strong>.<br /><em>Get <strong>results</strong>.</em></div>'
+ '<div id="cv2" class="centervert">&nbsp;</div>'
+ '<div id="centerwedge3" class="sliderpane"><img src="wp-content/uploads/2010/11/quaker_grove.png" alt="" title="quaker_grove" width="171" height="109" class="alignleft size-full wp-image-255" />Grow your ability to <strong>GROW</strong>. Paragon  <strong>advises</strong><br /><em>the <strong>advisors</strong>.</em></div>'
+ '<div id="cv3" class="centervert">&nbsp;</div>'
+ '<div id="centerwedge4" class="sliderpane"><img src="wp-content/uploads/2010/11/readingguy.png" alt="" title="reading_guy" width="171" height="109" class="alignleft size-full wp-image-255" /><strong>PERFORMANCE</strong> is always<br /> a matter of <strong>people</strong>.<br /><em> Develop the human assets.</em></div>'
+ '<div id="cv4" class="centervert">&nbsp;</div>'
+ '<div id="centerwedge5" class="sliderpane"><img src="wp-content/uploads/2010/11/staringguy.png" alt="" title="staring_guy" width="171" height="109" class="alignleft size-full wp-image-255" /><strong>Developing</strong> top performers<br /> is a <strong>retention</strong> priority.<br /><em>Growing = Not Going.</em></div>'
+ '<div id="cv5" class="centervert">&nbsp;</div>';

$j(function() {
	
	
$j("#cvsliders").html(replacementstuff);	
		$j("div.sliderpane").slideToggle();
		$j( "#centerwedge1" ).show(500).addClass("slideropen");
		$j("div.centervert").hover(
		
			function () { 
				var inthis = $j(this).index();
					if($j(".slideropen").index() + 1 != inthis){
						$j(this).toggleClass("cvhighlight");
					}
				}
			);
	
		$j( "div.centervert" ).click(function() {
			var inthis = $j(this).index();
				if($j(".slideropen").index() + 1 != inthis){
			$j(this).removeClass("cvhighlight");
			$j(".slideropen").hide(500).removeClass("slideropen");
			$j(this).prev().show(500).addClass("slideropen");
			return false;
		}
		});
		
	});

