function img_hover1(img1, id1){
		$('#' + id1).attr("src", img1);
	}
	
function img_normal1(img1, id1){
		$('#' + id1).attr("src", img1);
	}	

function img_hover1(img1, id1, id2){
		$('#' + id1).attr("src", img1);
		if($('#printBasket_total').html() != 0) {
			$('#totalp').html('You have added ' + $('#printBasket_total').html() + ' pages to print basket');
		} else {
			$('#totalp').html('You have not selected any pages for the basket.');
		}
		if($('#printBasket_button a:eq(0)').html().toString() != '+') {
			$('#addremove').html('Remove this page from print basket.');
		} else {
			$('#addremove').html('Add this page to print basket.');
		}
		$('#' + id2).css({'display' : 'block'});
		$('#rollo').css({'display' : 'none'});  		
	}

function img_normal1(img1, id1, id2){
		$('#' + id1).attr("src", img1);
		$('#' + id2).css({'display' : 'none'});
		$('#rollo').css({'display' : 'block'});
	}	