// JavaScript Document

$(document).ready(function(){
	
	$.randomImage = {
		defaults: {
			//you can change these defaults to your own preferences.
			path: 'http://www.philrules.com/new_images/', //change this to the path of your images
			myImages: ['404-02.png', '404-03a.jpg', '404-04.gif', '404-05.png', '404-06.gif', '404-07.gif' ] //put image names in this bracket. ex: 'harold.jpg', 'maude.jpg', 'etc'
		}			
	}
	
	$.fn.extend({
			randomImage:function(config) {
				var config = $.extend({}, $.randomImage.defaults, config); 
				return this.each(function() {
						var imageNames = config.myImages;
						
						//get size of array, randomize a number from this
						// use this number as the array index

						var imageNamesSize = imageNames.length;

						var lotteryNumber = Math.floor(Math.random()*imageNamesSize);

						var winnerImage = imageNames[lotteryNumber];

						var fullPath = config.path + winnerImage;
						
						
						//put this image into DOM at class of randomImage
						// alt tag will be image filename.
						$(this).attr( {
										src: fullPath,
										alt: winnerImage
									});
				
				});	
			}
			
	});
});


$(function() {

	$('.shuffle').randomImage({path: 'http://philrules.com/new_images/'});

});

$(function(){
	var src=$('img.shuffle').attr('src') 
	if( src=='http://philrules.com/new_images/404-06.gif'){
			$("p#404").after('<p id="meme-link">For more info on the inspiration for the above self-portrait, check out the <a href="http://knowyourmeme.com/memes/nyan-cat-pop-tart-cat" title="Nyan Cat/Pop Tart Cat" target="_blank">Nyan Cat/Pop Tart Cat</a> on KnowYourMeme.com!</p>');
	}
	if( src=='http://philrules.com/new_images/404-02.png'){
			$("p#404").after('<p id="meme-link">For more info on the inspiration for the above self-portrait, check out the <a href="http://knowyourmeme.com/memes/x-all-the-y" title="X all the Y" target="_blank">X all the Y</a> on KnowYourMeme.com!</p>');
	}
	if( src=='http://philrules.com/new_images/404-03a.jpg'){
			$("p#404").after('<p id="meme-link">For more info on the inspiration for the above self-portrait, check out the <a href="http://knowyourmeme.com/memes/futurama-fry-not-sure-if-x" title="Futurama Fry / Cant Tell if X" target="_blank">Can&rsquo;t Tell if X</a> on KnowYourMeme.com!</p>');
	}
	if( src=='http://philrules.com/new_images/404-04.gif'){
			$("p#404").after('<p id="meme-link">For more info on the inspiration for the above self-portrait, check out the <a href="http://knowyourmeme.com/memes/lol-guy" title="LOL Guy" target="_blank">LOL Guy</a> on KnowYourMeme.com!</p>');
	}
	if( src=='http://philrules.com/new_images/404-05.png'){
			$("p#404").after('<p id="meme-link">For more info on the inspiration for the above self-portrait, check out the <a href="http://knowyourmeme.com/memes/y-u-no-guy" title="Y U NO Guy" target="_blank">Y U NO Guy</a> on KnowYourMeme.com!</p>');
	}
	if( src=='http://philrules.com/new_images/404-07.gif'){
			$("p#404").after('<p id="meme-link">For more info on the inspiration for the above self-portrait, check out <a href="http://knowyourmeme.com/memes/meme/peanut-butter-jelly-time" title="Peanut Butter Jelly Time" target="_blank">Peanut Butter Jelly Time</a> on KnowYourMeme.com!</p>');
		};
});


