﻿//$Id:neshcy.$
var $j = jQuery.noConflict();
//var border = RUZEE.ShadedBorder.create({ corner:8, shadow:16,  border:2 });

$j(function () {


    $j('a').click(function () {
        $j(this).blur();
    });
    $j('a').focus(function () {
        $j(this).blur();
        return false;
    });
    if ($j('#featureproductrotationimage').length) {
        $j('#featureproductrotationimage').cycle({
            fx: 'fade',
            timeout: 5000,
            pager: '#featureproductrotationnav',
            pagerAnchorBuilder: function (idx, slide) {
                return '#featureproductrotationnav li:eq(' + idx + ') a';
            }
        });
    }
});

