jQuery(document).ready(function($) {
$('a.kswptt_qtip').cluetip({
cluetipClass: 'qtip',
width: 350,
cluezIndex: 10000,
dropShadow: false,
hoverIntent: false,
showTitle: false,
positionBy: 'bottomTop',
sticky: false,
arrows: true,
tracking: false,
local:true,
clickThrough: false,
mouseOutClose: true,
attribute: 'pwrel',
onActivate: function(e) {
$('#cluetip-outer').css({backgroundColor: '#ffffff'});
$('#cluetip-title').css({backgroundColor: '#ccc'});
return true;
}
});
});
jQuery(document).ready(function($) {
$('a.kswptt_qtip_sticky').cluetip({
cluetipClass: 'qtip',
width: 350,
cluezIndex: 10000,
dropShadow: false,
hoverIntent: false,
showTitle: false,
positionBy: 'bottomTop',
sticky: true,
arrows: true,
tracking: false,
local:true,
clickThrough: false,
mouseOutClose: true,
closePosition: 'top',
attribute: 'pwrel',
closeText: '',
onActivate: function(e) {
$('#cluetip-outer').css({backgroundColor: '#ffffff'});
$('#cluetip-title').css({backgroundColor: '#ccc'});
return true;
}
});
});
jQuery(document).ready(function($) {
$('a.kswptt_qtip_clickthru').cluetip({
cluetipClass: 'qtip',
width: 350,
cluezIndex: 10000,
dropShadow: false,
hoverIntent: false,
showTitle: false,
positionBy: 'bottomTop',
sticky: false,
arrows: true,
tracking: false,
local:true,
clickThrough: true,
mouseOutClose: true,
attribute: 'pwrel',
onActivate: function(e) {
$('#cluetip-outer').css({backgroundColor: '#ffffff'});
$('#cluetip-title').css({backgroundColor: '#ccc'});
return true;
}
});
});
jQuery(document).ready(function($) {
$('a.kswptt_qtip_stickthru').cluetip({
cluetipClass: 'qtip',
width: 350,
cluezIndex: 10000,
dropShadow: false,
hoverIntent: false,
showTitle: false,
positionBy: 'bottomTop',
sticky: true,
arrows: true,
tracking: false,
local:true,
clickThrough: true,
mouseOutClose: true,
closePosition: 'top',
attribute: 'pwrel',
closeText: '',
onActivate: function(e) {
$('#cluetip-outer').css({backgroundColor: '#ffffff'});
$('#cluetip-title').css({backgroundColor: '#ccc'});
return true;
}
});
});