$(function() {
    $('img:first').show();
    /*$('img').click(function() {
		$(this).parent().find('img').hide();
		nextob = $(this).next();
		if (nextob.length == 0)
			nextob = $(this).parent().find('img:first');

		nextob.show();
	});*/

    $('.link_over').click(function() {
        $('.container').find('img').hide();
        $('.container').find('img:eq('+$(this).attr('linkto')+')').show();
    });

    setInterval(blink, 500);
})

function blink() {
    if ($(".blink").css('display') != 'none')
        $('.blink').hide();
    else $('.blink').show();
}