jQuery(document).ready(function(jQuery){
	jQuery('.printLink').show();
	jQuery('.pullquote').each(function() {
	var jQueryparentParagraph = jQuery(this).parent('p');
	jQueryparentParagraph.css('position', 'relative');
	jQuery(this).clone()
	  .addClass('pulledquote')
	  .prependTo(jQueryparentParagraph);
	});
	jQuery('a').each(function() {
		if (jQuery(this).find('img').length) {
			jQuery(this).addClass('img');
		};
	});
	

	jQuery('#slider').anythingSlider({
		autoPlay    	: true, // If autoPlay is on, this can force it to start stopped
		width           : 760,  // Override the default CSS width
		toggleControls  : false, // if true, then slide in controls on hover and slider change, hide @ other times
		//theme           : 'metallic',
		delay			:8000,
		pauseOnHover	:true,
		animationTime	:800,
		startText		:'Play',
		stopText		:'Pause',
		onSlideComplete : function(slider){
		}
	});

/*
	var features = {'url(../images/featHead1.jpg)':'url(../images/featTag1.jpg)','url(../images/featHead3.jpg)':'url(../images/featTag3.jpg)','url(../images/featHead4.jpg)':'url(../images/featTag4.jpg)','url(../images/featHead2.jpg)':'url(../images/featTag2.jpg)'}
	jQuery.each(features, function(key, value) { 
		jQuery('#feature h2').delay(7000).fadeOut(400).css('background', key).fadeIn(200);
		jQuery('#feature h3').delay(7000).fadeOut(400).css('background', value).fadeIn(200);
	});
*/

});

