$(function() {

    $('.enlarge-image a').lightBox();
    $('.image-block .pr-image a').lightBox();
    $(".tabs-ul a").click(function(){
        $(".tabs-ul a").removeClass("tab-act");
        $(this).addClass("tab-act");
        $(".tabed_cont").hide();
        $("#" + $(this).attr("rel")).show();
        return false;
    });
    $('#thumbnails a').click(function(){
        $("#pimage").attr('src', $(this).attr('href'));
        $('.enlarge-image a').attr('href', $(this).attr('rel'));
        return false;
    });

    $("#form-container").abform({
        attributes :'id="review-form" action="index.php" method="POST"',
        convert : '{page|hidden}{command|hidden}{name|text}{details|textarea}{save|button|class="absubmit"}',
        sequential_disable : false
    });

    $(".add-review, .edit-review").click(function(){
        $("#dialog-add-review").dialog('destroy');
        $("#dialog-add-review").dialog({
            draggable: false,
		    resizable: false,
			width:500,
			height:400,
			modal: true
		});
		return false;
    });
});
