jQuery(document).ready(function($) {
	//Form Select
//    $('.form-1 select').styledSelect({
//        innerClass: 'select-replace'
//    });
	
	// Odd and Even Rows							
	$(".table-1 tbody tr:nth-child(even)").addClass("row");
	
	// Flickr Fancybox
	$("a.zoom[href$=.jpg]").fancybox(); 
	
	//Hide all Flickr photos but then show the first 3
	$('#lev-3-2 li').hide().filter(':lt(3)').show();
});
