$(document).ready(function(){
	prepareGallery();
})

function prepareGallery(){
	$('#images a:last').css('margin-bottom', '0')
}

var Timer;
function ScrollTop(e) {
	Timer = setInterval(function(){document.getElementById(e).scrollTop -= 15}, 15);
	
}

function ScrollBtm(e) {
	Timer = setInterval(function(){document.getElementById(e).scrollTop += 15}, 15)
}

function inputFocus(a, b) {
    if (a.value == b) (a.value = '');
}

function inputBlur(a, b) {
    if (a.value == '') (a.value = b);
}