var $j = jQuery.noConflict();

$j(function() {
		
	//rotate the images on the front page
	$j('#ImageRotator').flash({
		src: '/wp-content/themes/lion/home_slideshow.swf',
		height: 408,
		width: 950,
		bgcolor: '6C430E'
	});
	
	//insert big letters
	$j('#Notices p:first, #LatestBuzz p:first, #LatestHappenings p:first, .Replaceable p:first, .Page .Entry p:first').each(function(){
		var newContent = $j(this).html().slice(1);
		var letter = $j(this).html().slice(0, 1).toLowerCase();
		var letterPath = '/wp-content/themes/lion/images/letters/letter_' + letter + '.png';
		$j(this).html(newContent);
		$j(this).prepend('<img id="BigLetter" src="' + letterPath + '"></img>');
	});
	
	//make sure flower stays lined up
	$j(window).resize( function(){
		if ( $j(window).width() < 960) { $j('body').css('background-position', '-332px 0'); }
		else { $j('body').css('background-position', 'top center'); }
	});
});