/**
 * Add the ID's to the list on the service page
 */

var updateList = {
	  
    init: function()
    {
    	$('#service ul').addClass('service-list');
		$('#service ul.service-list li:nth-child(1)').addClass('pass');
		$('#service ul.service-list li:nth-child(2)').addClass('fail');
		$('#service ul.service-list li:nth-child(3)').addClass('email');

		/* initiate prettyphoto */
		$("a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
    }

}

$(document).ready(updateList.init);