/*var rss = $('<script>');
rss.attr('id', 'rss-feed');
rss.attr("type", "text/rss");
rss.attr("src", "http://www.pictage.com/blog/feed");
$('head').append(rss);*/

function isValidEmail(email) {
	if (/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(email)) {
		return true;
	}	
	return false;
};

$(document).ready(function() {
	$('.tblank').attr('target','_blank');
	imageRandomizer('.forum-users', forumImages);
	imageRandomizer('.featured-photogs', featuredPhotographers);
	columnHeightsSetter();
	simpleAccordion('.gateway-nav > li > h3:not(".find-a-photographer h3")',false,true,'slide');
	animatedRotator(5000,'.animRotator');
	
	$('#photog-login-submit').click(function(e){
		e.preventDefault();
		
		if (! isValidEmail($('#photog-login-email').val())) {
			alert("Please enter a valid email address.");
		}
		else if ($('#photog-login-password').val() == "") {
			alert("Please enter a password.");
		}
		else {
			$('#photog-login-form').submit();
		}
		
		return false;
	});
	
	$('#guest-login-submit').click(function(e){
		e.preventDefault();
		if (! isValidEmail($('#guest-login-email').val())) {
			alert("Please enter a valid email address.");
		}
		else if ($('#guest-login-password').val() == "") {
			alert("Please enter a password.");
		}
		else {
			$('#guest-login-form').submit();
		}
		return false;
	});
	
	$('#find-your-event-submit').click(function(e){
		e.preventDefault();
		if ($('#find-your-event-name').val().length < 2) {
			alert("Event must be two or more characters.");
		}
		else {
			$('#find-your-event-form').submit();
		}
		return false;
	});
	
	$(".tweet").tweet({
        username: "pictage",
		query: "pictage",
        count: 8
    });
	
	$("#photog-login-email,#photog-login-password,#guest-login-email,#guest-login-password").keydown(function(e){
		if (e.which == '13') {
			e.preventDefault();
			var type = $(this).attr('id').indexOf("photog") != -1 ? "photog" : "guest";
			$("#"+type+"-login-form").submit();
			return false;
		}
	});
	
	$('#loginButton').click(function() {
		$(this).toggleClass('active');
		$('#mainLoginFormWrapper').slideToggle(200, function(){
			$('#photog-login-email').focus();
		}); 
	});

});

// makes content columns the same height so borders will be the same length on all
function columnHeightsSetter() {
	$('#content .content-section').css('height',$('#content').css('height'));
}

// Simple Accordion
function simpleAccordion (activator,firstOpen,limitOne,effect) {
	$(activator).click(function() {
		$(this).toggleClass('closed')
		if (effect=='slide') {
			$(this).next().slideToggle(500);
		} else {
			$(this).next().toggle(500);
		}
		// if this is true, only one item will be permitted to be open at a time
		if (limitOne === true) {
			$(activator).not($(this)).addClass('closed');
			if (effect=='slide') {
				$(activator).not($(this)).next().slideUp(500);
			} else {
				$(activator).not($(this)).next().hide(500);
			}
		}
		return false;
	});
	// if firstOpen is true, the first item will be open on load
	if (firstOpen === true) {
		$(activator).filter(':not(:first)').addClass('closed').next().hide();
	// if firstOpen is an integer, then it will select an item by index (1-based) to be open on load
	} else if (firstOpen === parseInt(firstOpen)) {
		$(activator+':not(:eq('+(firstOpen-1)+'))').addClass('closed').next().hide();
	// if there is a hash (#) in the url, tests to see if it points to one of the activators, and opens that activator if it is
	// then tests to see whether the url hash points to an ID inside one of the accordion content areas, and opens that one if it does
	} else if (window.location.hash) {
		var activatorHasId = 0;
		$(activator).each(function(){
			if (('#'+$(this).attr('id')) === window.location.hash){
				$(activator).not($(window.location.hash)).addClass('closed').next().hide();
				activatorHasId = 1;
				return;
			}
		});
		if (activatorHasId != 1){
			$(activator).not($(window.location.hash).parents().prev(activator)).addClass('closed').next().hide();
		}
	// otherwise firstOpen will be accepted as a css selector for the item (or items) to be open on load, and where none are present, all items will be closed on load
	} else {
		$(activator+':not('+firstOpen+')').addClass('closed').next().hide();
	}
}

//randomly selects a images from the forumImages array to populate the forum module on the PictageU homepage
function imageRandomizer(list, thisArray) {
	var randomIndex;
	$(list + ' > li').each(function(index){
		randomIndex = Math.floor(Math.random()*thisArray.length);
		$(this).find('a').attr('href',thisArray[randomIndex].href);
		$(this).find('img').attr({
			'src':($(this).find('img').attr('src') + thisArray[randomIndex].src),
			'alt':thisArray[randomIndex].alt
		});
		$(this).find('h3 a').html(thisArray[randomIndex].name);
		$(this).find('p').html(thisArray[randomIndex].location);
		thisArray.splice(randomIndex,1);
	});
}

/* Animated gallery rotator function
	interval = the amount of time on each slide
	container = css selector for the parent element of all the slides
*/
animatedRotator = function (interval,container){
	// checks whether there is more than one slide before running animation
	if ($(container).children().length > 1) {
		//randomizes first slide if ".animRotatorActive" class hasn't been given to one of them
		if ($(container).find('.animRotatorActive').length < 1) {
			var numSlides = $(container).children().length;
			var firstSlideNumber = Math.floor(Math.random()*numSlides) + 1;
			var firstSlide = $(container).children('*:nth-child(' + firstSlideNumber + ')');
			$(container).height(firstSlide.innerHeight());
			firstSlide.addClass('animRotatorActive');
		} else {
			$(container).height($('.animRotatorActive').innerHeight());
		}
		setInterval(function(){
			var active = $(container +' > .animRotatorActive');
			var next = (active.next()[0])? active.next() : $(container).children('*:first-child');
			active.siblings().css('visibility','hidden');
			next.css('visibility','visible');
			$(container).animate({
				height:next.innerHeight()
			},1000);
			active.fadeOut(1000, function() {
				active.removeClass('animRotatorActive').css('display','block');
				next.addClass('animRotatorActive');
			});
		},interval);
	}
};
var forumImages = new Array(
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/allison-mayer-photographer.jpg', alt : 'Professional Photographer Allison Mayer', name : 'Allison Mayer', location : 'Carmel, IN' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/amanda-rose-photographer.jpg', alt : 'Professional Photographer Amanda Rose', name : 'Amanda Rose', location : 'Littleton, CO' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/amber-hunt-photographer.jpg', alt : 'Professional Photographer Amber Hunt', name : 'Amber Hunt', location : 'Detroit, MI' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/amie-otto-photographer.jpg', alt : 'Professional Photographer Amie Otto', name : 'Amie Otto', location : 'Northern VA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/angela-anderson-photographer.jpg', alt : 'Professional Photographer Angela Anderson', name : 'Angela Anderson', location : 'Louisville, KY' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/anna-clark-photographer.jpg', alt : 'Professional Photographer Anna Clark', name : 'Anna Clark', location : 'Atlanta, GA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/arika-pope-photographer.jpg', alt : 'Professional Photographer Arika Pope', name : 'Arika Pope', location : 'Seattle, WA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/cam-sarah-photographers.jpg', alt : 'Professional Photographer Cam Sarah', name : 'Cam Sarah', location : '' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/catherine-warren-photographer.jpg', alt : 'Professional Photographer Catherine Warren', name : 'Catherine Warren', location : 'Acworth, GA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/chay-mendoza-photographer.jpg', alt : 'Professional Photographer Chay Mendoza', name : 'Chay Mendoza', location : 'San Diego, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/derrick-morin-photographer.jpg', alt : 'Professional Photographer Derrick Morin', name : 'Derrick Morin', location : 'Boston, MA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/erlenmeyer-photographer.jpg', alt : 'Professional Photographer Erlenmeyer', name : 'Erlenmeyer', location : 'Moses Lake, WA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/hal-mccall-photographer.jpg', alt : 'Professional Photographer Hal Mccall', name : 'Hal Mccall', location : 'Patterson, NY' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/jaci-clark-photographer.jpg', alt : 'Professional Photographer Jaci Clark', name : 'Jaci Clark', location : 'Youngstown, OH' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/jeff-youngren-photographer.jpg', alt : 'Professional Photographer Jeff Youngren', name : 'Jeff Youngren', location : 'San Diego, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/jessica-del-vecchio-photographer.jpg', alt : 'Professional Photographer Jessica Del Vecchio', name : 'Jessica Del Vecchio', location : 'Washington, DC' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/jill-myers-photographer.jpg', alt : 'Professional Photographer Jill Myers', name : 'Jill Myers', location : 'Baltimore, MD' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/joel-treadwell-photographer.jpg', alt : 'Professional Photographer Joel Treadwell', name : 'Joel Treadwell', location : 'Covington, LA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/jon-brewer-photographer.jpg', alt : 'Professional Photographer Jon Brewer', name : 'Jon Brewer', location : 'Indianapolis, IN' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/julie-hamilton-photographer.jpg', alt : 'Professional Photographer Julie Hamilton', name : 'Julie Hamilton', location : 'Ontario, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/kacie-jean-photographer.jpg', alt : 'Professional Photographer Kacie Jean', name : 'Kacie Jean', location : 'Santa Barbara, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/kadie-pangburn-photographer.jpg', alt : 'Professional Photographer Kadie Pangburn', name : 'Kadie Pangburn', location : 'Tucson, AZ' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/kamara-alleyne-photographer.jpg', alt : 'Professional Photographer Kamara Alleyne', name : 'Kamara Alleyne', location : 'St. Vincent &amp; the Grenadines' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/kate-gardiner-photographer.jpg', alt : 'Professional Photographer Kate Gardiner', name : 'Kate Gardiner', location : 'St. Augustine, FL' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/kate-passaro-photographer.jpg', alt : 'Professional Photographer Kate Passaro', name : 'Kate Passaro', location : 'Rockland, MA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/kay-beaton-photographer.jpg', alt : 'Professional Photographer Kay Beaton', name : 'Kay Beaton', location : 'Breckenridge, CO' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/keri-kay-photographer.jpg', alt : 'Professional Photographer Keri Kay', name : 'Keri Kay', location : 'Spring Hill, TN' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/keri-vaca-photographer.jpg', alt : 'Professional Photographer Keri Vaca', name : 'Keri Vaca', location : 'San Francisco, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/kimberly-myers-photographer.jpg', alt : 'Professional Photographer Kimberly Myers', name : 'Kimberly Myers', location : 'Longmont, CO' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/lauren-rutten-photographer.jpg', alt : 'Professional Photographer Lauren Rutten', name : 'Lauren Rutten', location : 'New Jersey' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/laurie-ann-martin-photographer.jpg', alt : 'Professional Photographer Laurie Ann Martin', name : 'Laurie Ann Martin', location : 'Kelseyville, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/leeann-marie-photographer.jpg', alt : 'Professional Photographer Leeann Marie', name : 'Leeann Marie', location : 'Pittsburgh, PA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/leighann-photographer.jpg', alt : 'Professional Photographer Leighann', name : 'Leighann', location : 'Birmingham, AL' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/lyndsay-undseth-photographer.jpg', alt : 'Professional Photographer Lyndsay Undseth', name : 'Lyndsay Undseth', location : 'El Dorado Hills, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/michael-carr-photographer.jpg', alt : 'Professional Photographer Michael Carr', name : 'Michael Carr', location : 'Chicago, IL' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/mike-boyce-photographer.jpg', alt : 'Professional Photographer Mike Boyce', name : 'Mike Boyce', location : 'Saskatoon, SK' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/mike-merrill-photographer.jpg', alt : 'Professional Photographer Mike Merrill', name : 'Mike Merrill', location : 'South Carolina' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/nancy-gutierrez-photographer.jpg', alt : 'Professional Photographer Nancy Gutierrez', name : 'Nancy Gutierrez', location : 'Los Angeles CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/renee-sprink-photographer.jpg', alt : 'Professional Photographer Renee Sprink', name : 'Renee Sprink', location : 'Raleigh, NC' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/rick-king-photographer.jpg', alt : 'Professional Photographer Rick King', name : 'Rick King', location : '' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/ryan-kelly-photographer.jpg', alt : 'Professional Photographer Ryan Kelly', name : 'Ryan Kelly', location : 'Edmonton, Alberta Canada' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/sarah-hodzic-photographer.jpg', alt : 'Professional Photographer Sarah Hodzic', name : 'Sarah Hodzic', location : 'McLean, VA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/scott-villalobos-photographer.jpg', alt : 'Professional Photographer Scott Villalobos', name : 'Scott Villalobos', location : 'Houston, TX' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/shari-zellers-photographer.jpg', alt : 'Professional Photographer Shari Zellers', name : 'Shari Zellers', location : 'Atlanta, GA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/shawn-reeder-photographer.jpg', alt : 'Professional Photographer Shawn Reeder', name : 'Shawn Reeder', location : 'Bishop, CA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/spencer-clark-photographer.jpg', alt : 'Professional Photographer Spencer Clark', name : 'Spencer Clark', location : 'Atlanta, GA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/stephanie-lehnert-photographer.jpg', alt : 'Professional Photographer Stephanie Lehnert', name : 'Stephanie Lehnert', location : 'Columbus, OH' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/suzanne-tenuto-photographer.jpg', alt : 'Professional Photographer Suzanne Tenuto', name : 'Suzanne Tenuto', location : 'Philadelphia, PA' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/tina-ortiz-photographer.jpg', alt : 'Professional Photographer Tina Ortiz', name : 'Tina Ortiz', location : 'Tampa, FL' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/tracy-autem-photographer.jpg', alt : 'Professional Photographer Tracy Autem', name : 'Tracy Autem', location : 'Fort Worth, TX' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/vogel-photographer.jpg', alt : 'Professional Photographer Vogel', name : 'Tracy Vogel', location : 'Aberdeen, SD' },
	{ href : 'http://forums.pictage.com/', src : '/client/static/styles/main/images/home/forum-thumbs/whitney-carlson-photographer.jpg', alt : 'Professional Photographer Whitney Warlson', name : 'Whitney Carlson', location : 'Nashville, TN' }
);
var featuredPhotographers = new Array (
	{ href : 'http://www.pictage.com/photographers/listing.do?n=george-street-photo-%26-video&studio=TM030', src : '/client/static/styles/main/images/home/featured-photographers/george-street-photo-video.jpg', alt : 'George Street Photo & Video', name : 'George Street Photo &amp; Video', location : 'Chicago, IL' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=edward-fox-photography&studio=CM109', src : '/client/static/styles/main/images/home/featured-photographers/edward-fox-photography.jpg', alt : 'Edward Fox Photography', name : 'Edward Fox Photography', location : 'Chicago, IL' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=bellagala&studio=KB014', src : '/client/static/styles/main/images/home/featured-photographers/bellagala.jpg', alt : 'Bellagala', name : 'Bellagala', location : 'St. Paul, MN' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=loraann-photography&studio=LB112', src : '/client/static/styles/main/images/home/featured-photographers/loraann-photography.jpg', alt : 'LoraAnn Photography', name : 'LoraAnn Photography', location : 'Rochester, NY' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=classic-photographers&studio=BT016', src : '/client/static/styles/main/images/home/featured-photographers/classic-photographers.jpg', alt : 'Classic Photographers', name : 'Classic Photographers', location : 'Boston, MA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=fusionriver-photography&studio=MH170', src : '/client/static/styles/main/images/home/featured-photographers/fusionriver-photography.jpg', alt : 'Fusionriver Photography', name : 'Fusionriver Photography', location : 'Peterborough, Ontario' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=sarah-esther-photography&studio=SW119', src : '/client/static/styles/main/images/home/featured-photographers/sarah-esther-photography.jpg', alt : 'Sarah Esther Photography', name : 'Sarah Esther Photography', location : 'Atlanta, GA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=christie-stockstill-photography&studio=CS146', src : '/client/static/styles/main/images/home/featured-photographers/stockstill-photography.jpg', alt : 'Stockstill Photography', name : 'Stockstill Photography', location : 'Austin, TX' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=mango-weddings-fine-art-photography-%26-videography-&studio=JD162', src : '/client/static/styles/main/images/home/featured-photographers/mango-weddings.jpg', alt : 'Mango Weddings', name : 'Mango Weddings', location : 'Cabo San Lucas, Mexico' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=jess-robertson-photography&studio=JR209', src : '/client/static/styles/main/images/home/featured-photographers/jess-robertson-photography.jpg', alt : 'Jess Robertson Photography', name : 'Jess Robertson Photography', location : 'Grand Terrace, CA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=sedona-bride-photographers&studio=KW005', src : '/client/static/styles/main/images/home/featured-photographers/sedona-bride.jpg', alt : 'Sedona Bride', name : 'Sedona Bride', location : 'Sedona, AZ' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=misty-miotto&studio=MM185', src : '/client/static/styles/main/images/home/featured-photographers/misty-miotto-photography.jpg', alt : 'Misty Miotto Photography', name : 'Misty Miotto Photography', location : 'Orlando, FL' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=sandi-foraci-photography&studio=SF004', src : '/client/static/styles/main/images/home/featured-photographers/sandi-foraci-photography.jpg', alt : 'Sandi Foraci Photography', name : 'Sandi Foraci Photography', location : 'Waldorf, MD' },
	
	{ href : 'http://www.pictage.com/photographers/listing.do?n=k-mosley-photography&studio=KM165', src : '/client/static/styles/main/images/home/featured-photographers/k-mosley-photography.jpg', alt : 'k mosley photography', name : 'k mosley photography', location : 'Nashville, TN' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=melani-lust-photography&studio=ML070', src : '/client/static/styles/main/images/home/featured-photographers/melani-lust-photography.jpg', alt : 'Melani Lust Photography', name : 'Melani Lust Photography', location : 'Westport, CT' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=megan-lane-photography&studio=ML160', src : '/client/static/styles/main/images/home/featured-photographers/megan-lane-photography.jpg', alt : 'Megan Lane Photography', name : 'Megan Lane Photography', location : 'Helena, MT' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=spottswood-photography&studio=SS134', src : '/client/static/styles/main/images/home/featured-photographers/spottswood-photography.jpg', alt : 'Spottswood Photography', name : 'Spottswood Photography', location : 'Hartford, WI' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=sara-wall-photography&studio=SW021', src : '/client/static/styles/main/images/home/featured-photographers/sara-wall-photography.jpg', alt : 'Sara Wall Photography', name : 'Sara Wall Photography', location : 'Kilauea, HI' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=armen-elliott-photography&studio=AE026', src : '/client/static/styles/main/images/home/featured-photographers/armen-elliot-photography.jpg', alt : 'Armen Elliott Photography', name : 'Armen Elliott Photography', location : 'Lehigh Valley, PA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=figlewicz-photography&studio=CF045', src : '/client/static/styles/main/images/home/featured-photographers/figlewica-photography.jpg', alt : 'Figlewicz Photography', name : 'Figlewicz Photography', location : 'Lomita, CA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=christopher-kight-photographers&studio=CK032', src : '/client/static/styles/main/images/home/featured-photographers/chirstopher-kight-photographers.jpg', alt : 'Christopher Kight Photographers', name : 'Christopher Kight Photographers', location : 'Sacramento, CA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=elegant-images&studio=CS109', src : '/client/static/styles/main/images/home/featured-photographers/elegant-images.jpg', alt : 'Elegant Images', name : 'Elegant Images', location : 'Everett, WA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=on-the-edge%2C-llc.&studio=DC043', src : '/client/static/styles/main/images/home/featured-photographers/on-the-edge-llc.jpg', alt : 'On the edge, LLC.', name : 'On the edge, LLC.', location : 'Spokane, WA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=david-murray-weddings&studio=DM010', src : '/client/static/styles/main/images/home/featured-photographers/david-murray-weddings.jpg', alt : 'David Murray Weddings', name : 'David Murray Weddings', location : 'Atlanta, GA' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=33-park-photography-%26-gallery&studio=FM009', src : '/client/static/styles/main/images/home/featured-photographers/33-park-photography.jpg', alt : '33 Park Photography', name : '33 Park Photography', location : 'Hilton Head Island, SC' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=jamie-and-michelle-photography&studio=JA146', src : '/client/static/styles/main/images/home/featured-photographers/jamie-and-michelle-photography.jpg', alt : 'Jamie and Michelle Photography', name : 'Jamie and Michelle Photography', location : 'Merrillville, IN' },
	{ href : 'http://www.pictage.com/photographers/listing.do?n=stephanie-a-smith-photography&studio=SS156', src : '/client/static/styles/main/images/home/featured-photographers/stephanie-a-smith-photography.jpg', alt : 'Stephanie A Smith Photography', name : 'Stephanie A Smith Photography', location : 'Tampa, FL' }
);
