// jQuery Template scripts
$(document).ready(function () {

	// Select all links that contains lightbox in the attribute rel and convert to lightbox
	$('a[rel*=lightbox]').lightBox();
	
	// Function to check if an element exists by checking length of jQuery object
	$.fn.exists = function () { return $(this).length > 0; }

	// Dom manipulation for CactuShop - we're very limited with styling capabilities so need to resort to JS
	if ($("div.extrainfolinks.help").exists()) {

		$("div.extrainfolinks.help").appendTo("div.category div.pad div.description");
		
	}
	
});
