jQuery(document).ready(function(){ // make sure the jquery is loaded
	
	// rollovers
	jQuery('.homepage .spot ~ .hide').each(function(){
		
		// add the tool tip
		jQuery(this).prev().qtip({
			content: jQuery(this).html(),
			position: { 
				corner: {
					target: 'bottomMiddle',
					tooltip: 'topMiddle'
				},
				adjust: {
					y: -20,
					screen: true
				}
			 },
			 style: {
				border: {
					width: 0,
					radius: 3,
					color: '#d6e8f0'
				},
				width: 262,
				background: '#f4f9fb',
				padding: 14,
				tip: true
			 }
		});
					
	});
	
	// rollover color
	
	
	// ecomm testimonials	
	jQuery('#ecom-testimonials').append('<span class="ccs"></span>');
	
	
	// links
	jQuery('.homepage .spot a').each(function(){
		jQuery(this).parent().parent('div').css('cursor','pointer');
		jQuery(this).parent().parent('div').click(function(){
			location.href = jQuery(this).find('a').attr('href');
		});
	});
	
	
	
});