$(document).ready(function(){

	$("ul#menu li.parent").hover(function(){
		$(this).find('ul').slideDown(300);
		$(this).addClass('hover');
	}, function() {
		$(this).find('ul').slideUp(300);
		$(this).removeClass('hover');
	});
	
	$("#logo_slider").jcarousel({
        scroll: 3,
        animation:"slow",
        easing:'swing'
    });
    
	$('a.specs').each(function(){
    	$(this).qtip({
			content: $(this).parent().parent().find('p.specs').html(),
			show: { delay:0, effect: { type:'fade', length: 200 } },
			hide: 'mouseout',
			position: { corner: { target: 'topMiddle', tooltip: 'bottomMiddle' } },
			style: { name: 'dark', background:'#000', fontSize:'1.2em', border:'none', tip:'bottomMiddle', border: { width: 7, radius: 5, color: '#000' } }
		});
    });
    
	$('a.specs2').each(function(){
    	$(this).qtip({
			content: $(this).parent().find('p.specs').html(),
			show: { delay:0, effect: { type:'fade', length: 200 } },
			hide: 'mouseout',
			position: { corner: { target: 'topMiddle', tooltip: 'bottomMiddle' } },
			style: { name: 'dark', background:'#000', fontSize:'1.2em', border:'none', tip:'bottomMiddle', border: { width: 7, radius: 5, color: '#000' } }
		});
    });
    
    $('a.fancyzoom').fancyZoom();

});