$(document).ready(function(){

$("#content_main h2:first").css({marginTop: '0'});

$("#wrapper_sidebar h3:first").css({marginTop: '0'});

$("#content_sub ul li:last").css({border: 'none', margin: '0', padding: '0'});

$(".post:last").css({border: 'none'});

 $("a").hover(
      function () {
        $(this).animate({ color: "#000000"}, 500 );
      }, 
      function () {
        $(this).animate({ color: "#FE359B"}, 500 );
      }
    );

$(function() {
    $('#pause').click(function() { $('#slides').cycle('pause'); return false; });
    $('#play').click(function() { $('#slides').cycle('resume'); return false; });
    
    $('#slides').cycle({
        fx:     'fade',
        speed:   1000,
        timeout: 4000,
        next:   '#next',
        prev:   '#prev',
        cleartype:  1 
    });
});

});