jQuery.noConflict();

/*
 * General DOM ready statemenets
 */
jQuery(function($) {
	
	if (($.browser.msie) && ($.browser.version <= 6)) {
		$('#meta li:first-child, #nav li:first-child').addClass('first-child')
	}
			
	var $clone = $('.column').clone().appendTo('#home-slider');
	$clone.find('img:first').appendTo($clone)
	var $clone2 = $clone.clone().appendTo('#home-slider');
	$clone2.find('img:first').appendTo($clone2)
	
	$('.column').cycle({
	    fx: 'scrollLeft',
	    timeout: '8000'
	});
	
	$('#nav li').hover(
	  function () {
	    $(this).addClass("over");
	  },
	  function () {
	    $(this).removeClass("over");
	  }
	);
	
});

/*
 * New home slideshow
*/ 
jQuery(function($) {
	$('#rkhomeslideshowInner').cycle();
});
