
var $jq = jQuery.noConflict();

$jq(document).ready(function() {
  $jq('div.demo-show:eq(0)> div').hide();
	
			
	$jq("#loga").easySlider({
        vertical: true,
				continuous: true,
				speed: 800,
        pause: 8000,
				controlsShow: false,
				auto: true
		});	
	
	$jq('div.demo-show:eq(0)> h5').toggle(function(){
		$jq(this).addClass("aktiv");
		}, function () {
		$jq(this).removeClass("aktiv");
		});
	
	
	$jq('div.demo-show:eq(0)> h5').click(function() {

    $jq(this).next().slideToggle('fast');
		
		});
		
	$jq('#rotate > ul').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 9000);
			
	$jq("#slider").easySlider({
				controlsBefore:	'<p id="controls">',
				controlsAfter:	'</p>',
				auto: true, 
				continuous: true,
				speed: 800,
				pause: 8000
		});

	$jq("a[rel^='prettyPhoto']").prettyPhoto();
});
