$(document).ready(function(){
	$('div#sort-form1 input.go').click( function(){
		var page = $('div#sort-form1 select').val();
		document.location.href = page;
		return false;
	} );
	
	$('div#details').cycle({ 
		fx: 'fade',
		prev: '#previous',
		next: '#next',
		speed : 3000
	});

	$('div.image-frame').each(function(){
			$(this).css("width", $(this).find('img').width() + 14);
			var imageFrame = this;
			$(imageFrame).find('img').load(function(){$(imageFrame).css("width", $(this).width() + 14);});
	});
	

});


