jQuery.noConflict();
jQuery(document).ready(function(){
	/* if (jQuery('.startCnt').length) {
		jQuery('.startCnt > div > div.cntBox').hover(
			function () {
				jQuery(this).children('div.teaser').animate({left: '-230px'}, 500 );
				jQuery(this).children('div.info').animate({left: '0px'}, 500 );
			},
			function () {
				jQuery(this).children('div.teaser').animate({left: '0px'}, 500 );
				jQuery(this).children('div.info').animate({left: '230px'}, 500 );
			}
		); 
	}*/
	if (jQuery('.tabBox').length) {
		jQuery("ul.css-tabs").tabs("div.css-panes > div");
	};
	if (jQuery('.rgaccord1-nest').length) {
		jQuery('.rgaccord1-toggle').click(function() {
			if (jQuery(this).hasClass('act')) {
				jQuery(this).removeClass('act');
			} else {
				jQuery(this).addClass('act');
			}
			jQuery(this).next().toggle('slow');
			return false;
		}).next().hide();
		jQuery( '.rgaccord1-toggle' ).each(function(index, item){
			if(index == 0) {
				jQuery(item).next().toggle('slow');
				jQuery(this).addClass('act');
			} 
		});	
	};
});
/* 
window.onload = function(){
	$$( '.rgaccord1-nest' ).each(function(item, index){
		if(index == 0) {
			var thisSlider = new Fx.Slide( item.getElement( '.rgaccord1-content' ), { duration: 500 } );
			thisSlider.toggle();
		} 
 	});
};
 */
