$(document).ready(function() {

	$('.image-small img').click(function() {
		img = $(this).attr("src").replace(".jpg", "a.jpg");
		alt = $('#content h1').text();
		$("#image-preview img").replaceWith('<img src="'+img+'" alt="'+alt+'" />');
	});

	if ( $('.lightbox').length ) {
		$('.lightbox').lightBox({fixedNavigation:true});
	}

});

function clearConsole() {
	if (window.console && window.console.firebug) {
		console.clear()
	}
}
