var active_obj = null;
var active_frame = 1;
var active_timer = 0;
var start_frame = '';

function vplay( vid, sl ) {
}

function animate_next( ) {
	active_frame++;
	if (active_frame==11) active_frame = 1;
	active_obj.attr('src',active_obj.attr('src').replace(/\d+.jpg/,''+active_frame+'.jpg'));
}

function animate_stop() {
	clearInterval(active_timer);
	active_frame = 1;
	active_obj.attr('src',start_frame);
	active_obj = null;
	start_frame = '';
}

function vdes() {
}

$(document).ready(function(){
	var oval = $("#login-link").offset();
	oval.top=55;
	$('#login-panel').offset(oval);
    $("#login-link").click(function(){
        $("#login-panel").slideToggle(200);
    });
    $(".vpre img").hover(function() { active_obj = $(this); start_frame = active_obj.attr('src'); animate_next(); active_timer = setInterval("animate_next()", 700); }, animate_stop);
})
$(document).keydown(function(e) {
    if (e.keyCode == 27) {
        $("#login-panel").hide(0);
    }
});

