// JavaScript Document

$(document).ready(function() {

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

// Google - Analytics
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);


//coloremotion-Logo
	$('#head .coloremotion').hover( function(){
			$(this).animate({'width':'+=10px','right':'-=10px'}, { duration:400, easing: 'easeOutBack'});
		},
		function() {
			$(this).animate({'width':'-=10px','right':'+=10px'}, { duration:400, easing: 'easeOutBack'});
		}
	);
	
//Mehr Text 
	$('aside .more').click(function() {
		$('.moretext').slideToggle(200);
		($(this).text() == 'mehr >>') ? $(this).text('<< minimieren') : $(this).text('mehr >>');
		return false;	
	});


// initialize Slider
	$("#slideshow").scrollable({circular: true}).navigator().autoscroll({interval: 6000});


//Datepicker
	$.datepicker.setDefaults($.datepicker.regional['']);
	$( ".datepicker" ).datepicker($.datepicker.regional['de']);


});


