
(function($){

	$(function(){
	
		$('#richiedi-quotazione').click(function(){
		
			var products = [];
			$('#shopping-cart-table tbody tr').each(function(){
			
				var me = $(this),
					h2 = me.find('h2');

				products.push({
					link: h2.find('a').attr('href'),
					name: h2.text().trim(),
					qty:  me.find('input.qty').val()
				});
			});

			$.post('/quotazione.php', {products: products}, function(){
				$.colorbox({ iframe: true, href: '/quotazione.php', width: '460px', height: '80%' });
			});
		});


		$('.catalog-category-view #narrow-by-list dt').each(function(){
		
			var me = $(this),
				dd = me.next('dd');

			me.click(function(){
				dd.slideToggle();
			});
		});


		$('#vision-carousel').each(function(){
			if (!brands) return;

			var me  = $(this),
				div = $('<div class="cslide" />'),
				a   = $('<a class="carousel-link" />'),
				img = $('<img />'),
				inner = me.find('.inner');

			a.append(img);
			div.append(a);

			$(brands).each(function(){
				var el = div.clone();

				el.find('a')
					.attr('title', this[4])
					.attr('href',  this[3]);

				el.find('img')
					.attr('src', this[1])
					.attr('alt', this[2]);

				inner.append(el);
			});


			new Carousel(
				me.find('.middle').get(0),
				me.find('.inner img').get(),
				$$('a.carousel-control', 'a.carousel-jumper'),
				{
					auto: true,
					duration: 0.5,
					transition: 'sinoidal',
					visibleSlides: 6,
					circular: false
				}
			);
				
		});


		$('.newsletter-target').click(function(){
			$.colorbox({
				iframe: true,
				href: 'http://cawi.sistemidivisione.net/ls/index.php?sid=93859&newtest=Y&lang=it',
				width: '850px',
				height: '80%'
			});
		});
	
		$('.gmaps-target').click(function(){
			$.colorbox({
				iframe: true,
				href: 'http://visionlink.it/_stuff/googlemap.html',
				width: '800px',
				height: '570px'
			});
		});

	});


})(jQuery.noConflict());

