$(function() {
$('#runGirls').cycle({pause:1,before:onAfter});

var l = $('#girlsCarousel > div > ul > li:not(".cloned")')
var ha = $('#girlsCarousel > div > ul > li:not(".cloned") > h2 > a');
var ia = $('#girlsCarousel > div > ul > li:not(".cloned") > a');

ha.click(function () {
l.animate({opacity:.5})
$(this).parent().parent().animate({opacity:1},'fast')
return false;
});

ia.click(function () {
l.animate({opacity:.5})
$(this).parent().animate({opacity:1},'fast')
return false;
});

});

function onKlik(curr) {
$('#runGirls').cycle(curr);
}

function onAfter(curr, next, opts) {
var l = $('#girlsCarousel > div > ul > li:not(".cloned")')
l.animate({opacity:1})
}


function onSticky() {
$('#runGirls').cycle('pause');
}

