source: ether_2012/trunk/web/project/slideActivities.jsp @ 356

Last change on this file since 356 was 356, checked in by vmipsl, 12 years ago

slides

File size: 5.3 KB
Line 
1<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
2
3<table class="slideTable">
4    <tr>
5        <td id="tdMimosa">
6            <a href="http://ether.ipsl.jussieu.fr/ether/pubipsl/mimosa_uk.jsp">
7                <div class="slideTableTitle">MIMOSA</div>
8                <img id="logoMimosa" src="resources/images/logo_mimosa.png" width="80px" alt='<spring:message code="logo.mimosa.alt"/>' title='<spring:message code="logo.mimosa.alt"/>'/>
9            </a>
10        </td>
11
12        <td id="tdReprobus">
13            <a href="http://ether.ipsl.jussieu.fr/ether/pubipsl/reprobus_uk.jsp">
14                <div class="slideTableTitle">REPROBUS</div>
15                <img id="logoReprobus" src="resources/images/logo_O3_reprobus.png" width="80px" alt='<spring:message code="logo.reprobus.alt"/>' title='<spring:message code="logo.reprobus.alt"/>'/>
16            </a>
17
18        <td id="tdIasi">
19            <a href="http://ether.ipsl.jussieu.fr/etherTypo/index.php?id=ether-exp&type=1&exp=IASI&view=MAIN&L=1">
20                <div class="slideTableTitle">IASI</div>
21                <img id="logoIasi" src="resources/images/logo_iasi.jpg" width="80px" alt='<spring:message code="logo.iasi.alt"/>' title='<spring:message code="logo.iasi.alt"/>'/>
22            </a>
23        </td>
24
25        <td id="tdTropico">
26            <a href="http://ether.ipsl.jussieu.fr/ether/pubipsl/mimosa_uk_trop.jsp">
27                <div class="slideTableTitle">TRO-pico</div>
28                <img id="logoTropico" src="resources/images/logo_tropico_small.jpg" width="80px" alt='<spring:message code="logo.tropico.alt"/>' title='<spring:message code="logo.tropico.alt"/>'/>
29            </a>
30        </td>
31
32        <td id="tdGeisa">
33            <div class="slideTableTitle">GEISA</div>
34            <img id="logoGeisa" src="resources/images/logo_Geisa76-50deform.jpg" width="80px" alt='<spring:message code="logo.geisa.alt"/>' title='<spring:message code="logo.geisa.alt"/>'/>
35        </td>
36
37        <td id="tdMozaic">
38            <div class="slideTableTitle">Mozaic</div>
39            <img id="logoMozaic" src="resources/images/logo_mozaic.GIF" width="80px" alt='<spring:message code="logo.geisa.alt"/>' title='<spring:message code="logo.geisa.alt"/>'/>
40        </td>
41
42        <td id="tdEccad">
43            <a href="http://ether.ipsl.jussieu.fr/eccad">
44                <div class="slideTableTitle">ECCAD</div>
45                <img id="logoEccad" src="resources/images/logo_ECCAD_small.gif" width="80px" alt='<spring:message code="logo.eccad.alt"/>' title='<spring:message code="logo.eccad.alt"/>'/>
46            </a>
47        </td>
48
49        <td id="tdMegapoli">
50            <a href="http://ether.ipsl.jussieu.fr/megapoli">
51                <div class="slideTableTitle">MEGAPOLI</div>
52                <img id="logoMegapoli" src="resources/images/logo_Megapoli.png" width="80px" alt='<spring:message code="logo.megapoli.alt"/>' title='<spring:message code="logo.megapoli.alt"/>'/>
53            </a>
54        </td>
55    </tr>
56</table>
57&nbsp;
58
59<script type="text/javascript">
60    $( "#tdMimosa" ).bind( "mouseover", function()
61    {
62        $( "#logoMimosa" ).attr( {src:"resources/images/logo_mimosa_hover.png"} );
63    } );
64    $( "#tdMimosa" ).bind( "mouseout", function()
65    {
66        $( "#logoMimosa" ).attr( {src:"resources/images/logo_mimosa.png"} );
67    } );
68
69    $( "#tdReprobus" ).bind( "mouseover", function()
70    {
71        $( "#logoReprobus" ).attr( {src:"resources/images/logo_O3_reprobus_hover.png"} );
72    } );
73    $( "#tdReprobus" ).bind( "mouseout", function()
74    {
75        $( "#logoReprobus" ).attr( {src:"resources/images/logo_O3_reprobus.png"} );
76    } );
77
78    $( "#tdIasi" ).bind( "mouseover", function()
79    {
80        $( "#logoIasi" ).attr( {src:"resources/images/logo_iasi_hover.jpg"} );
81    } );
82    $( "#tdIasi" ).bind( "mouseout", function()
83    {
84        $( "#logoIasi" ).attr( {src:"resources/images/logo_iasi.jpg"} );
85    } );
86
87    $( "#tdTropico" ).bind( "mouseover", function()
88    {
89        $( "#logoTropico" ).attr( {src:"resources/images/logo_tropico_small_hover.jpg"} );
90    } );
91    $( "#tdTropico" ).bind( "mouseout", function()
92    {
93        $( "#logoTropico" ).attr( {src:"resources/images/logo_tropico_small.jpg"} );
94    } );
95
96    $( "#tdGeisa" ).bind( "mouseover", function()
97    {
98        $( "#logoGeisa" ).attr( {src:"resources/images/logo_Geisa76-50deform_hover.jpg"} );
99    } );
100    $( "#tdGeisa" ).bind( "mouseout", function()
101    {
102        $( "#logoGeisa" ).attr( {src:"resources/images/logo_Geisa76-50deform.jpg"} );
103    } );
104
105    $( "#tdMozaic" ).bind( "mouseover", function()
106    {
107        $( "#logoMozaic" ).attr( {src:"resources/images/logo_mozaic_hover.GIF"} );
108    } );
109    $( "#tdMozaic" ).bind( "mouseout", function()
110    {
111        $( "#logoMozaic" ).attr( {src:"resources/images/logo_mozaic.GIF"} );
112    } );
113
114    $( "#tdEccad" ).bind( "mouseover", function()
115    {
116        $( "#logoEccad" ).attr( {src:"resources/images/logo_ECCAD_small_hover.gif"} );
117    } );
118    $( "#tdEccad" ).bind( "mouseout", function()
119    {
120        $( "#logoEccad" ).attr( {src:"resources/images/logo_ECCAD_small.gif"} );
121    } );
122
123    $( "#tdMegapoli" ).bind( "mouseover", function()
124    {
125        $( "#logoMegapoli" ).attr( {src:"resources/images/logo_Megapoli_hover.png"} );
126    } );
127    $( "#tdMegapoli" ).bind( "mouseout", function()
128    {
129        $( "#logoMegapoli" ).attr( {src:"resources/images/logo_Megapoli.png"} );
130    } );
131</script>
Note: See TracBrowser for help on using the repository browser.