/* YELITO jQuery */

$(document).ready(function(){
	$('#list1a').accordion({
		header: 'a.title',
		autoheight: false,
		alwaysOpen: false,
		animated: 'easeslide',
		navigation: true
	});

	$('.sticky').cluetip({
		sticky: true,
		positionBy: 'fixed',
		arrows: false,
		width: 600,
		topOffset: -120,
		leftOffset: 52,
		activation: 'click',
		dropShadow: true,
		dropShadowSteps: 3,
		closeText: '<img src="images/cross.gif" alt="X" />',
		closePosition: 'title',
		hoverClass: 'highlight',
		cursor: 'pointer',
		fx: {open: 'slideDown', openSpeed:  ''}
		});

	$('#cluetip')
		.bind('dragstart',function( event ){
				return $(event.target).is('#cluetip-title');
				})
		.bind('drag',function( event ){
				$( this ).css({
						top: event.offsetY,
						left: event.offsetX
						});
				});
		
});

