Cufon.replace('h1,h2,h3,h4,#logo,a.contactphone,a.contactemail,.tabbedwidget ul.tabs li a,#content .of li,.productfeatures p span,table thead td,table td.firsttd,#offerarea h1,#offerarea h2,#offerarea h4,p.describe', {fontFamily: 'Aller'} );


var $ = jQuery.noConflict();

$(document).ready(function() {
	
		$('#offerslide').coinslider({
			width: 460, // width of slider panel
			height: 300, // height of slider panel
			spw: 7, // squares per width
			sph: 5, // squares per height
			delay: 3000, // delay between images in ms
			sDelay: 30, // delay beetwen squares in ms
			opacity: 0.7, // opacity of title and navigation
			titleSpeed: 500, // speed of title appereance in ms
			effect: 'random', // random, swirl, rain, straight
			navigation: false, // prev next and buttons
			links : false, // show images as links 
			hoverPause: true // pause on hover
		});
		
		$('#topcontact a.contactphone, #topcontact a.contactemail, #offercontent a img, .secfull a img, #connectarea #connectbox a, #connectarea #subscribebox button').hover(function(){
			$(this).animate({opacity: 0.7}, 300);
		}, function () {
			$(this).animate({opacity: 1}, 300);
		});
		
		$(".tab_content").hide(); //Hide all content
			$("ul.tabs li:first").addClass("active").show(); //Activate first tab
			$(".tab_content:first").show(); //Show first tab content

			//On Click Event
			$("ul.tabs li").click(function() {

				$("ul.tabs li").removeClass("active"); //Remove any "active" class
				$(this).addClass("active"); //Add "active" class to selected tab
				$(".tab_content").hide(); //Hide all tab content

				var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
				$(activeTab).fadeIn(600); //Fade in the active ID content
				return false;
			});
		
		$('.ntip').tipsy({gravity: 's', fade:true});
		
		$('a.galleryimage').mouseenter(function(e) {
            $(this).children('img').animate(300);
            $(this).children('span').fadeIn(400);
        }).mouseleave(function(e) {
            $(this).children('img').animate(300);
            $(this).children('span').fadeOut(400);
        });
        
        $("a[rel^='prettyPhoto']").prettyPhoto({
			animation_speed: 'normal',
			theme: 'dark_rounded'
		});
		
		if(document.getElementById('twitter')) {
			$(".twitter").getTwitter({
				userName: "Gaysanjoseguide",
				numTweets: 1,
				loaderText: "Loading tweets...",
				slideIn: false,
				slideDuration: 750,
				showHeading: false,
				headingText: "Latest Tweets",
				showProfileLink: false,
				showTimestamp: false
			});
		}
		
});

$(function() {
	$(".testimonials").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 2,
		auto:2000,
		speed:1500
	});
});
