/*******************************************************************************
*  WS-Engine 5.2
*
*  Website build environment
*******************************************************************************
*  Autor: slawomir Cichon  E-mail: <slawek.cichon@gmail.com>
*  WWW: http://www.sc-oms.com
*******************************************************************************
* Version: $Id: common.js 10 2009-12-21 15:29:29Z slawek $
*/

function vipUdate( id, field ){
    var vip_number =  prompt('Podaj numer klubowicza ');
    if ( vip_number ){
        xajax_vipUpdateData( id, field, vip_number );
    }
    
    
}


$(document).ready(function() {
    
    $('a[rel^="prettyPhoto"]').prettyPhoto({theme:'facebook'});


    $('.menu-item').mouseover( function(){
/*        $( this ).css("background-color","black");*/
        var offset = $(this).offset();
        $( this ).children(".sub-menu").css("top", (offset.top-38)+ "px");
        $( this ).children(".sub-menu").css("left",(offset.left+223)+ "px");
        $( this ).children(".sub-menu").css("display","block");
        }
     );
     
     $('.menu-item').mouseout( function(){
        $( this ).children(".sub-menu").css("display","none");
     });
    
    $('.fc_atc').click(function(){
        var offset = $(this).offset() ;
      //  alert( offset.top +' '+ offset.left);
        $( '#fl_atc' ).css("top", (offset.top-10)+ "px");
        $( '#fl_atc' ).css("left",(offset.left-100)+ "px");
        $( '#fl_atc' ).css("display","block");
        $( '#fl_atc' ).fadeOut(2000);
    })
    
    
 });


