

	/*$(document).ready(function() {
		
		jQuery('#mycarousel').jcarousel({scroll: 4});
		var topOff = -24;
		var leftOff = -46;
		
		if ($.browser.msie) {leftOff= -106;}	
		if ($.browser.mozilla && parseFloat($.browser.version)  >= 1.9) {leftOff = -106;}
		if ($.browser.opera && parseFloat($.browser.version)  > 8) {leftOff = -106; topOff = -10;}
				
	  	$('a.tips').cluetip({
			splitTitle: '-',*/ // use the invoking element's title attribute to populate the clueTip...
						 // ...and split the contents into separate divs where there is a "-"
			//showTitle: false,  // hide the clueTip's heading#
/*			positionBy: 'fixed',
			topOffset: topOff,
			leftOffset: leftOff,
			dropShadow: false
		});
	}); 

*/

$(document).ready(function() {

    jQuery('#mycarousel').jcarousel({ scroll: 8 });
    var topOff = -23;
    var leftOff = -114;

    $('a.tips').cluetip({
        splitTitle: '-',
        showTitle: false,
        positionBy: 'fixed',
        topOffset: topOff,
        leftOffset: leftOff,
        dropShadow: false,
        activation: 'hover'
    });

//    $('li.test').cluetip({
//        splitTitle: '-',
//        showTitle: false,
//        positionBy: 'auto',
//        topOffset: topOff,
//        leftOffset: leftOff,
//        dropShadow: false,
//        activation: 'focus',
//        interval: 750
//    });

$('a.tips.theme_landing').click(function() {
    $('#dynamic').load($(this).attr('href'));
    return false;
});

});



