/*
                              Javascript for
                      SteveHiggs.com - V7 - Gallery
--------------------------------------------------------------------------------
*/


$(function() {


	// Remove the border from the top artwork
	$('.Artwork:first').css({
		'border': '0'
	});


/* Click artwork thumbnail or title
________________________________________________________________________________ */


	$('.ArtworkThumbnail a').click(function() {
					
		var action = "IncrementDownloads";
		var title = escape($(this).attr('title'));
		var originalhref = $(this).attr('href');

		// Send information to processor
		$.ajax ({
			type: 'post',
			url: 'ajax-processor.php',
			data: 'action=' + action + '&title=' + title,

			success: function(results){
				window.location.href = originalhref;
			}
		});

		return false;
	});



	$('.ArtworkTitle a').click(function() {
					
		var action = "IncrementDownloads";
		var title = escape($(this).attr('title'));
		var originalhref = $(this).attr('href');

		// Send information to processor
		$.ajax ({
			type: 'post',
			url: 'ajax-processor.php',
			data: 'action=' + action + '&title=' + title,

			success: function(results){
				window.location.href = originalhref;
			}
		});

		return false;
	});



});

