$().ready(function(){ 


        /*** AFTER THE SS ARE DISPLAYED, FIX THE CTA BUTTON *******/

        function rw_fix_ss_cta_butts(){
                    $('.rw_ss_callout_hold a.rw_cta').each(function(){
                        //vert pos set
                        var rw_ss_cta_parent = $(this).parent('.rw_ss_callout_hold').height();

                        var rw_ss_cta_self_ht = $(this).height();
                        //console.log('EEEE: ' + rw_ss_cta_self_ht);

                        var rw_ss_cta_pos = rw_ss_cta_parent - rw_ss_cta_self_ht-12;
                        $(this).css({'margin-top':rw_ss_cta_pos+'px'});


                        //horz pos set
                        //var rw_prod_cta_horz = $(this)..parent().parent('.content').width() - 227;
                        $(this).css({'margin-left':655 +'px'});

                    });
        };//close rw_fix_ss_cta_butts 


		rw_fix_ss_cta_butts();

});//close on ready