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

	// body colour animation
    jQuery('.pulse, .current_page_item, .ctn_main_blog p a').pulse({		
        backgroundColors: ['#93278a', '#f0409b', '#f67167', '#f99d42'],
        speed: 7500
    });
    
    
    $('.playlist li a').hover(function() { 
    
    	$(this).parent().css('background', '#b3b3b3');


    }, function() { 
    
    	$(this).parent().css('background', '#efefef');
    
    });
    
    
    $('.playlist li a').click(function() {
    
    	$('.play_icon').css('background-position', '0 0px');
    
    	$(this).children('div').css('background-position', '0 -22px');
    	 	
    
    })
    
    
    
   if($('.playlist').length != 0) {
    
    	$('.ctn_main_blog .jr-post-img').hide();    
    
    }


});
