24 lines
551 B
JavaScript
24 lines
551 B
JavaScript
$(document).ready(function(){
|
|
$('.idpr').live('click', function(e){
|
|
e.preventDefault();
|
|
var n = $(this).attr('id');
|
|
if ($('#p'+n).css('display')=='none'){
|
|
$('#p'+n).css('display', 'block');
|
|
} else {
|
|
$('#p'+n).css('display', 'none');
|
|
}
|
|
});
|
|
|
|
$('.GiantTooltip').each(function()
|
|
{
|
|
$(this).qtip( {
|
|
content: $(this).attr('alt'),
|
|
style: { width: 300, name: 'cream' },
|
|
hide: {when: 'mouseout', fixed: true},
|
|
position: { corner: { target: 'bottomMiddle',
|
|
tooltip: 'topMiddle' } }
|
|
});
|
|
});
|
|
});
|
|
|