var COCO = window.COCO || {};

(function($) {
		
	COCO.main = {
		init: function() {
			COCO.main.tooltips();
			COCO.main.lightbox();
		},
		tooltips: function() {
			$('#brands a[title]').qtip({
				show: {
					delay: 0,
					effect: {
						type: 'fade',
						length: 300
					}
				},
				hide: {
					effect: {
						type: 'fade',
						length: 300
					}
				},
				style: {
					background: '#c66f96',
					color: '#ffffff',
					border: {
						width: 4,
						radius: 5,
						color: '#c66f96'
					},
					tip: {
						corner: 'bottomMiddle'
					}
				},
				position: {
					corner: {
						target: 'topMiddle',
						tooltip: 'bottomMiddle'
					}
				}
			});
		},
		lightbox: function() {
			$("#gallery a").fancybox({
				titlePosition: 'inside'
			});
		}
	}
	
	$(document).ready(COCO.main.init);
})(jQuery);



