/* RESEN */
/* Custom Javascript
----------------------------------------------------------------------------- */

	
	$(document).ready(function() {
	
		markup();
		twitter();
	
	});
	
	$(window).load(function() {
	
	
	
	});
	
	
/* FUNCTION: MARKUP CHANGES
----------------------------------------------------------------------------- */


	function markup() {
	
		if ($('div.products.display').length > 0) {
		
		//	$('div.products.display').append('<p><a href="/legal#ordering">Ordering Information</a> / <a href="/legal#shipping">Shipping Information</a> / <a href="/legal#privacy">Privacy Policy</a> / <a href="/legal#satisfaction">Satisfaction Guarantee</a></p>');	
		
		}


		// FAN OF THE MONTH
		$('#fan').each(function() {
		
			var html = $(this).find('h4 a').text();
			var html = html.replace(/\//g, '<br />')
			$(this).find('h4').html(html);
			
			$(this).find('ul.content > li').append('<ul class="actions"><li><a href="/photos">See More Photos in Lou Dog\'s Photo Album</a></li></ul>')
		
		});
		
		
	}
	
	
/* FUNCTION: TWITTER
---------------------------------------------------------------------------- */

	
	function twitter() {
	
		if ($('#twitter').length > 0) {
		
			$('#twitter').tweet({
			
				username: 'loudogtreats',
				count: 1,
				avatar_size: 28,
				loading_text: 'loading tweets...'
				
			});
			
		}
		
	}
	
	function twitterCallback() {
	
		// Add Follow Link
		var image = $('.tweet_avatar img').attr('src');
		$('#twitter').append('<a class="follow" href="http://twitter.com/loudogtreats" target="_blank"><img src="' + image + '" />Follow Lou Dog on Twitter</a>');
		
	}
