// JavaScript Document
jQuery(document).ready(function(){					
	
	jQuery("#feature-img a").colorbox({transition:'elastic', speed:600});
		
	jQuery("#width-advert3 ul li a img[alt]").tooltip({ 
	offset: [+143, 0],
	effect: 'slide',
	
	onBeforeShow: function(){
			theUrl = this.getTrigger().parent().attr("href");
			//getAjaxData(theUrl, this.getTip());
			this.getTip().click(
			function() {     
			window.location = theUrl; }); 
		}
	});
		
	
});


