$(document).ready(function(){

	
	$(".resources .main ul li a").click(function(){
		window.open(this.href);
		return false;
	})

   // Use the each() method to gain access to each of the elements attributes

   $('.home img, .about img').each(function()
   {
		var captionText = $(this).attr("alt")				
		caption = '<p class="caption">' + captionText + '</p>'

		$(this).qtip(
		{
			content: { 
				text: captionText, // Give it some content
				prerender: false
			},
		   position: 'bottomLeft', // Set its position
		   hide: {
		      fixed: true // Make it fixed so it can be hovered over
		   },
		   style: {
		      padding: '5px 15px', // Give it some extra padding
			  margin: '0',
		      name: 'camp' // And style it with the preset dark theme
		   }
		});
   });

   $('.services img, .resources img, .contact img, .news img, .about img#about-photo').each(function()
   {
		var captionText = $(this).attr("alt")				
		caption = '<p class="caption">' + captionText + '</p>'

		$(this).qtip(
		{
			content: { 
				text: captionText, // Give it some content
				prerender: false
			},
		   position: 'bottomLeft', // Set its position
		   hide: {
		      fixed: true // Make it fixed so it can be hovered over
		   },
		   style: {
		      padding: '5px 15px', // Give it some extra padding
			  margin: '0',
		      name: 'campwide' // And style it with the preset dark theme
		   }
		});
   });
	
});
