$(function() {
	$('p.success').delay(3000).fadeOut('slow');
	$('p.error').delay(3000).fadeOut('slow');
	
	$('nav li ul').mouseenter(function() {
		$(this).parent().children('a').css('background-color', '#fff');
		$(this).parent().children('a').css('color', '#000');
	}).mouseleave(function() {
		$(this).parent().children('a').css('background-color', '#201f1f');
		$(this).parent().children('a').css('color', '#fff');
	}); 
	
	$('nav li').each(function() {
		if ($(this).hasClass('childSelected')) {
			$(this).children('ul').show();
		}
	});
	
	var width = $(window).width();
	if ($('section#index_rotation').length) {
		$('section#index_rotation').cycle({speed: 1000, timeout: 4000, fit: 1});
	}
	
	/// VideoJS.setupAllWhenReady();
	
	if ($('body#collection').length) { 
	    $('body#collection ul#mycarousel').jcarousel({
			wrap: 'circular',
			visible: 1,
			scroll: 1
	    });
	}
});
