/**
 * @section   : Unobtrusive JavaScript events and function calls, triggered on DOMContentLoaded.
 * @project   : Strikolith
 * @author    : John van Hulsen <john@e-sites.nl>
 * @media     : all
 * @version   : 1.0
 */

$(document).ready(function () {

	/* Change value of the activeProject on gridItems by a click */
	if($('#gridItems') != null) {
		$('#gridItems').delegate('a', 'click', function (e) {

			var self = $(this),
				anchor = self.attr('href'),
				imgSrc = self.attr('rel');

			$('#activeProject a').attr('href', anchor);
			$('#activeProject img').attr('src', imgSrc);

			e.preventDefault();

		});
	}
});