
	$(document).ready(function()
	{
		$("#sortbutton").remove();

		$("#sortselect").addClass("select-with-padding");

		$("#sortform").change(function()
		{
			var str = "";
			$("select option:selected").each(function ()
			{
				str += $(this).attr("value");
			});

			location.href= "http://" + $.url.attr("host") + "/?sort_by=" + str;
		});

		$.gaTracker('UA-7536481-1');


		/*if ($.iPhone.present) {
		}
		else
		{
			$(".thumbnail").lazyload({
			placeholder : "http://jamestindall.info/assets/images/blank.gif",
			effect : "fadeIn"
			});
		}*/
	});