/*
 * IX GMBH
 * MAIN.JS
 */

/*
 * JQUERY
 */
$(document).ready(function(){
    // CORNER
    $('div#headerBg').corner('5px, tr');
    $('ul#navMain li a').corner('5px, top');
    // FOOTERLINKS
    $('div#footerLinks').show();
    // LINK TO TOP
    $('div#linkToTop a').show().click(function(){
        $('html, body').animate({scrollTop:0}, 'fast');
        return false;
    });
    // TIPTIP
    $(".tiptip, div.csc-textpic-imagewrap a").tipTip();
});
