$(document).ready(function (){
	$(function () {
		// Marquee
		  // Add Scroller Object
			$jScroller.add("#scroller_container","#scroller","up",1);

			// Start Autoscroller
			$jScroller.start();
		});
		// ShadowBox
		Shadowbox.init();
		// Hover
		$(".pave").hover(function(){
			$(this).css('color', '#F29706');
			$(this).children().children().css('color', '#F29706');
			$(this).children().children().children().css('color', '#F29706');
		}, function(){
			$(this).css('color', '#173e65');
			$(this).children().children().css('color', '#FFFFFF');
			$(this).children().children().children().css('color', '#173e65');
		});
		$(".pavestore").hover(function(){
			$(this).css('color', '#F29706');
			$(this).children().children().css('color', '#173e65');
			$(this).children().children().children().css('color', '#F29706');
		}, function(){
			$(this).css('color', '#173e65');
			$(this).children().children().css('color', '#FFFFFF');
			$(this).children().children().children().css('color', '#173e65');
		});
		// Auto-Complete
		$("#motscles").autocomplete(ADRESSE+"search.php", {
				width: 260,
				selectFirst: false
		});
		$("#motsclesShop").autocomplete(ADRESSE+"shop/search.php", {
				width: 260,
				selectFirst: false
		});
		
		
});
