// JavaScript Document
$(document).ready(function() {
$('#banner').cycle({
fx: 'fade',
speed: 5000
});
$('#partners').cycle({
fx: 'fade',
speed: 10000
});
$(".link").hover(function(){
$(this).fadeTo("medium", 0.5);
},function(){
$(this).fadeTo("medium", 1.0);
});
$("a[rel^='prettyPhoto']").prettyPhoto({
theme: 'light_rounded',
}); 
});
