//if the document is ready, apply all functions
$(document).ready(function() {
	//loop through all links and set external ones to target="_blank"
	$('a[rel*=external]').attr("target","_blank");
	$('a[rel*=external]').attr("title","(opens in new window)");
	$('a[rel*=nofollow]').attr("target","_blank");
	$('a[rel*=nofollow]').attr("title","(opens in new window)");
	//apply lightbox to links
	$('a[rel*=lightbox]').lightBox();
	//autosubmission for shopping basket updates
	$("table#shopping_basket_table select[name*=quantity]").bind("change", function() { this.form.submit(); }); //change quantity
});
