/** 
 * File only for index page
 * @author Rafalko M.
 */
$j(function() {    
    $j('#advVideoLink').click(function(event) {
        event.preventDefault();
        $j( "#advVideo" ).dialog('open');
        // hardcode (because of error with left css style)
        $j('#advVideo').parent().css('left', '-145px');
    });
    $j('#blgVideoLink').click(function(event) {
        event.preventDefault();
        $j( "#blgVideo" ).dialog('open');
        // hardcode (because of error with left css style)
        $j('#blgVideo').parent().css('left', '-145px');
    });
    $j("#advVideo").dialog({
        autoOpen: false,
        minWidth: 400,
        modal: true
    });
    $j("#blgVideo").dialog({
        autoOpen: false,
        minWidth: 400,
        modal: true
    });
});
