/* 
 This file was generated by Dashcode.  
 You may edit this file to customize your widget or web page 
 according to the license.txt file included in the project.
 */

//
// Function: load()
// Called by HTML body element's onload event when the web application is ready to start
//

$(window).bind('load', function() {

    dashcode.setupParts();

});


function rotate(event)
{
    // Code hier eingeben
    if(!$('#test').data("side")) {
        $('#test').css('webkitTransform', 'rotateY(180deg)');
        $('#test2').css('webkitTransform', 'rotateY(360deg)');
        $('#test').data("side", 1);
    } else {
        $('#test').css('webkitTransform', 'rotateY(0deg)');
        $('#test2').css('webkitTransform', 'rotateY(180deg)');
        $('#test').data("side", 0);
    }
}
