$(function() {

if ($('#shards_thumbnails').length > 0) {
	$('#shards_thumbnails').show();
	$('#shards_gallery img').hide();
	$('#first_image').show(); // only shows if a movie is not shown

	$('#shards_thumbnails_photos img').click(function() {
	 _gaq.push(['_trackEvent', 'Shards_O_Glass', 'View', 'Photos']);
	 var item_index = $(this).index() + 1;
	 $('#shards_movie').children().andSelf().remove();
	 $('#shards_gallery').children().hide().eq(item_index).show();	 
	});
	
	$('#shards_thumbnails_videos a').click(function() {
	 _gaq.push(['_trackEvent', 'Shards_O_Glass', 'View', 'Videos']);	 
	});
}

if ($('#email_section').length > 0) {
	$('#email_section').hide();
	$('#toggle_email_section').click(function() {$('#email_section').slideToggle();});
	$('#submit_email_form').click(function(){$('#email_section').submit();});
	$('#email_section').validate({
		rules: 
		{	name1: "required"
		,	email1: 
			{	required: true
			,	email: true
			}
		,	email2: 
			{	required: true
			,	email: true
			}
		}
	});
}


});
