function toolTips(){
	$(function() {
		$(".carousel-list a").tooltip({ 
	    	track: true, 
	    	delay: 500, 
	    	showURL: false, 
	    	opacity: 1, 
	    	showBody: " - ",
			extraClass: "paper", 
	    	top: -100, 
	    	left: -90,
			fade: 250
		});
	});
}

function htcIEFix(){
	//thumbs
	$('#thumbnails-contact li img').hover(
		function() {
			$(this).addClass('hover');
		}, 
		function() {
			$(this).removeClass('hover');
		}
	);
	//blog
	$('#main-area .content a.blog-thumb img').hover(
		function() {
			$(this).addClass('hover');
		}, 
		function() {
			$(this).removeClass('hover');
		}
	);
}
