
jQuery(document).ready(function($) {

$(".sociable img").hover(function(){
$(this).stop().fadeTo("fast", 1.0); // Set the opacity to 100% on hover
},function(){
$(this).stop().fadeTo("fast", 0.6); // Set the opacity back to 60% on mouseout
});

$(".has-halo ").hover(function(){
 $(this).find('img').stop().fadeTo(250, 0.75);
	$(".next a").stop().animate ( { color: '#ff2c68' }, 250);
}, function () {
    $(this).find('img').stop().fadeTo(350, 0);
	$(".next a").stop().animate ( { color: '#cccccc' }, 350);

});

$(".next a ").hover(function(){
 $(this).stop().animate ( { color: '#ff2c68' }, 250);
	$(".has-halo img").stop().fadeTo(250, 0.75);
}, function () {
    $(this).stop().animate ( { color: '#cccccc' }, 350);
	$(".has-halo img").stop().fadeTo(350, 0);

});

$("a").hover(function(){
 $(this).stop().animate( { color: '#ff2c68' }, 250)
;
}, function () {
    $(this).stop().animate( { color: '#DDFF4D' }, 350)
});

$(".portfolio .post a").hover(function(){
 $(this).stop().animate( { color: '#ff2c68' }, 250)
;
}, function () {
    $(this).stop().animate( { color: '#cccccc' }, 350)
});

$(".sidebar-content li li a").hover(function(){
 $(this).animate( { color: '#ff2c68' }, 250)
;
}, function () {
    $(this).animate( { color: '#ffffff' }, 350)
});

$(".sidebar-content h3 a").hover(function(){
 $(this).stop().animate( { color: '#ff2c68' }, 250)
;
}, function () {
    $(this).stop().animate( { color: '#cccccc' }, 350)
});

$(".mainmenu a, .blog-item a").hover(function(){
 $(this).stop().animate( { color: '#ff2c68' }, 250)
;
}, function () {
    $(this).stop().animate( { color: '#ffffff' }, 350)
});

$("#footer a").hover(function(){
 $(this).stop();
}, function () {
    $(this).stop();
});

$(".current_page_item a, .current_page_parent a, .current-cat a").hover(function(){
 $(this).stop().animate( { color: '#DDFF4D' }, 250)
;
}, function () {
    $(this).stop().animate( { color: '#DDFF4D' }, 350)
});

});