$(function() {

	// blog feed
	$("div.block:has(.feedreader_box)").addClass("blogfeed");

	//only move when logged out
	if( ! $("#hsnav").length) {
		$("div.blogfeed").prependTo("#home-boxes .blog");
	}

	$("div.blogfeed div.pad").append('<a class="readmore" href="http://pharmacyowners.com/blog/">MORE</a>');

	// if cookie exists
	if($.cookie('pharmacyowners')) {
		
		// home page slider
		$('#coda-slider-1').codaSlider({
			autoSlide: true
		});
		
	}
	// if cookie doesnt exist
	else {
	
		$("#slide1 .left").html('<a href="http://d3sbre3bjqqg32.cloudfront.net/a_better_life_pds2.flv" style="display:block;margin-top:12px;width:440px;height:248px" id="homepagevideo"></a>');
	
		// home page slider
		$('#coda-slider-1').codaSlider({
			autoSlide: false
		});
		
		flowplayer("homepagevideo", "/Portals/37772/flowplayer/flowplayer.commercial-3.2.2.swf", {
			key: '#@c157c48cbbb5761b65f',
			clip:  {
				autoPlay: true,
				autoBuffering: true,
				onFinish: function() {
					$("#slide1 .left").html('<a href="/freedom-from-the-bench/"><img src="/Portals/37772/slider/slide1-playvideo.png" alt="Play Video" /></a>');

					window.open('http://pharmacyowners.web3.hubspot.com/freedom-from-the-bench/','Freedom From The Bench');
					
				}
			},
		plugins:{
			gatracker: {
				url: "/Portals/37772/flowplayer/flowplayer.analytics-3.2.0.swf",
				trackingMode: "Bridge",
				// flowplayer.org uses and older version of the Analytics JS code, 
				// we need to modify the name of the tracker object accordingly
				bridgeObject: "UA-8050173-1",
				labels: {
					start: "Start",	
					play: "Play",	
					pause: "Pause",	
					resume: "Resume",	
					seek: "Seek",	
					stop: "Stop",	
					finish: "Finish",	
					mute: "Mute",	
					unmute: "Unmute",	
					fullscreen: "Full Screen",	
					fullscreenexit: "Full Screen Exit"	
				},
				debug: false
			}
		}
		});
		
		// create cookie
		$.cookie('pharmacyowners', 'visited', { expires: 365 });
		
		$("#coda-nav-1 a:not(:first), .coda-nav-right a, .coda-nav-left a").click(function() {
			
			$("#slide1 .left").html('<a href="/freedom-from-the-bench/"><img src="/Portals/37772/slider/slide1-playvideo.png" alt="Play Video" /></a>');
		
		});
		
	}

});