$(document).ready(function()
{
    $('#slides1').cycle('scrollLeft');

    $('.SubSubNavigation').hide();

    $('.social-block ul li').mouseover(function()
    {
        $(this).addClass('relative');
        $(this).find('.action').removeClass('hide');
    });
    $('.social-block ul li').mouseout(function()
    {
        $(this).removeClass('relative');
        $(this).find('.action').addClass('hide');
    });

    $('.social-block ul li ul li').mouseover(function()
    {
        $(this).removeClass('relative');
        $(this).find('.action').addClass('hide');
    });

    $('#mycarousel').jcarousel();

    $('.SubSubHover').mouseover(function()
    {
        $('.SubSubNavigation').show();
    });

    $('.SubSubHover').mouseout(function()
    {
        $('.SubSubNavigation').hide();
    });

    $(".form-element .selectboxTarget select").selectbox();

    $("input[type=file]").filestyle({
        image: "~/Primatch/Images/bladeren.gif",
        imageheight: 34,
        imagewidth: 54,
        width: 195
    });

});
