// JavaScript Document
$(document).ready(function(){
						   
	$('.prev-img').click(
		function(){
			$(this).next().children("input[type='radio']").attr('checked', 'checked').focus();
		}
	);
	
	//awful hack for odd opera bug
	if (window.opera){
		$('.btn').attr('style', 'background-color:#fff !important; color:#C00 !important');
	}

});
