// JavaScript Document

 $(document).ready(function() {
   $('.RC').corner();
   
   $('#facebooklike').remove();

	$('.article p').hide();
	$('.article').append('&nbsp;&nbsp;<a href="javascript:;">more...</a><br /><br /><hr />');
	
	$('.article a').click(function() {
			$(this).parent().find("p").show('slow');
			$(this).remove();
			
	});
	
	$('#footer').append('<div style="font-size: 9px; padding-right: 30px; text-align: right;">Web Design by Brian Barnett - <a href="http://www.isdky.com/" target="_blank">isdky.com</a></div>');
   //$('#mnuhome').stop().mouseenter(function(){
	//   			$(this).toggle('slow');
	//			$('#mnuhome_s').toggle('slow');
	   			//$('#mnuhome').animate({'background-image': 'url(images/menu/home_s.png)'},1000);
  // });
   
 });
