// No conflict with JS libraries
jQuery.noConflict();
jQuery(document).ready(function() {

// CSS Work
jQuery('#pagenav li:last').css('border', 'none');
jQuery('#pagenav li:last').css('padding', '0 0 0 4px');
jQuery('#sidebar_l li:first').css('margin-top', '0');
jQuery('#sidebar_r li:first').css('margin-top', '0');
jQuery('#sidebar_m li:first').css('margin-top', '0');
jQuery('#sidebar_m li:first').css('margin-bottom', '15px');

// Photo Gallery from Flickr
jQuery('#gallery img').fadeTo(1, 0.75);
jQuery('#gallery img').bind('mouseenter', function() { jQuery(this).fadeTo(200, 1.0); });
jQuery('#gallery img').bind('mouseleave', function() { jQuery(this).fadeTo(200, 0.75); });

// Post Gallery - Carousel
jQuery('#carousel ul li a img').fadeTo(1, 0.70);
jQuery('#carousel ul li a img').bind('mouseenter', function() { jQuery(this).fadeTo(200, 1.0); });
jQuery('#carousel ul li a img').bind('mouseleave', function() { jQuery(this).fadeTo(200, 0.70); });



});
