var $j = jQuery.noConflict();
$j(document).ready(function() {
$j("img#offersnotice[title]").tooltip({tip: '#tooltip', effect: 'bouncy'});
var $tabs = $j('#columnstabbed').tabs({ selected: 4 }); // first tab selected
$j("#tab_siteswelove").addClass("active");
$j('#tab_fashion a, #tab_interiors a, #tab_healthbeauty a, #tab_services a, #tab_siteswelove a').click(function() { // bind click event to link

    $j("ul#tabstrip li").removeClass("active");
    $j(this).parent().addClass("active");
    $j("img.offertip[title]").tooltip({tip: '#tooltiptwo', effect: 'slide', direction: 'left', bounce: 'true'});
    return false;
});
$j('#bfbcomments').cycle({fx: 'fade', timeout: 7500});
});