$(document).ready(function(){

	// Initialize Video.js
	$("video").VideoJS();
		$('.video-js-box').addClass('border');
	
	// Twitter Feed	
	var tweets = '<div class="twitters"></div>';
	$('.twitter p.follow').after(tweets);
	
	$('.twitters').jTweetsAnywhere({
        username: 'smithbrosagency',
        count: 3 }
    );		

	// Cycle
	if ($('.beliefs').length) {	
		$('.beliefs').cycle('scrollLeft');	
	};
	
	// Validation
	$('.contact-form form').validate();
	
	// Google Maps!	
	if ($('.map-pittsburgh, .map-san-francisco').length) {
	
		$(".map-pittsburgh img, .map-san-francisco img").remove(); 
		
		$(".map-pittsburgh").gMap({ 
			markers: [
												                              		
			  		{	address: "116 Federal St. Pittsburgh, PA 15216",
			  			popup:			true,
			  			html: "<strong>Smith Brothers Agency</strong><br/>116 Federal St.<br/>Pittsburgh, PA 15217<br/>(412) 359-7200<br/><a href='http://g.co/maps/52nk6'>Get Directions</a>" }
			  		],
	  		
	  		address: 		"116 Federal St. Pittsburgh, PA 15216",
			zoom: 			16,
			controls:		["GSmallMapControl"],
			popup:			true,
			scrollwheel:	false });
		
		$(".map-san-francisco").gMap({ 
			markers: [
												                              		
			  		{	address: "351 California St. San Francisco, CA 94104",
			  			popup:		true,
			  			html: "<strong>Smith Brothers Agency</strong><br/>351 California St.<br/>San Francisco, CA 94104<br/>(562) 219.4365<br/><a href='http://g.co/maps/9g4cb'>Get Directions</a>" }
			  		],
	  		
	  		address: 		"351 California St. San Francisco, CA 94104",
			zoom: 			17,
			controls:		["GSmallMapControl"],
			scrollwheel:	false });			
	};
	
	
	// Cycle
	if ($('.people .sub .pic-list').length) {	
		$('.people .sub .pic-list p').hide();		

		$(".people .landing .pic-list a").hoverIntent(
			function () {	$('p',this).fadeIn(250);},
			function () {	$('p',this).fadeOut(150);}
		);
		
		$(".people .peep-nav .pic-list a").hoverIntent(
			function () {	$('p',this).fadeIn(100);},
			function () {	$('p',this).fadeOut(150);}
		);				
	};	
	
	
	// append get social to top to avoid search engine spidering	
	$.get("/inc/be-social.html", function(data) {		
		$(".header .wrap").append(data)		
	});
	
});


/* Needs to happen on window load */

$(window).load(function() {
   
    $('.dog-pic-contain .flexslider').flexslider({
          animation: 'slide',
          controlsContainer: '.dog-pic-contain',
          controlNav: false
    });
    
    $('.workpiece .flexslider').flexslider();
          
    
});


