//common.js
var checkmove = true;
$(document).ready(function(){
    $("a.move_left").click(function(){
        var ml = $("#imagesCont").css('margin-left') == 'auto' ? 0 : $("#imagesCont").css('margin-left');
        var ch1 = parseInt(ml);
        var ch2 = $("#imagesCont div.imageItem").length * 187;
        if(checkmove && (ch2 + ch1) > 187*4)
        {
            checkmove = false;
            var mar = (parseInt(ml) - 187) + "px";
            $("#imagesCont").animate({
                marginLeft: mar
            }, 1000, null, dropmove); 
        }
    }); 
    $("a.move_right").click(function(){
        var ml = $("#imagesCont").css('margin-left') == 'auto' ? 0 : $("#imagesCont").css('margin-left');
        var ch1 = parseInt(ml);
        if(checkmove && ch1 < 0)
        {
            checkmove = false;
            var mar = (parseInt(ml) + 187) + "px";
            $("#imagesCont").animate({
                marginLeft: mar
            }, 1000, null, dropmove); 
        }
    });

    $('div.locaties table tr').hover(
        function() {
            $(this).addClass('locationsOver');
        },
        function() {
            $(this).removeClass('locationsOver');
        }
    ).click(function(){
        if ($('TD A', $(this)).size() == 1) {
            location.href = $('TD A', $(this)).attr('href');
        }
    });

    $("a.zoom").fancybox();
    $("a.iframe").fancybox({
         width: 720,
         height: 545
    });

	$("#topMenu li").eq(5).hide();
	
});

function dropmove()
{
     checkmove = true;
}

