این کد اسلایدر هستش ممنون میشم مشکل بگید
<!-------------- slider start ---------------->
<script type="text/JavaScript">
$(document).ready(function (){
$('#button a').click(function(){
var integer = $(this).attr('rel');
$('#myslide .cover').animate({left:-350*(parseInt(integer)-1)}) /*----- Width of div mystuff (here 160) ------ */
$('#button a').each(function(){
$(this).removeClass('active');
if($(this).hasClass('button'+integer)){
$(this).addClass('active')}
});
});
});
</script>
<div class="my_corners_t">
<div class="my_corners_l">
<div class="my_corners_r">
<div class="my_corners_b">
<div class="my_corners_tl">
<div class="my_corners_tr">
<div class="my_corners_bl">
<div class="my_corners_br">
<div class="redtop" >
<img src="<?php bloginfo('template_directory'); ?>/football3_Images/redtop1.gif" id="imgRed" /></img></div>
<?php query_posts('showposts=1'); ?>
<div class="slider">
<div id="button">
</div> <!-- end of div button-->
<div class="clear"></div>
<?php query_posts('showposts=3'); ?>
<div id="myslide">
<div class="cover">
<?php while (have_posts()) : the_post(); ?>
<div class="mystuff">
<div class="aks"><?php echo get_the_post_thumbnail( $post_id, $size, $attr ); ?></div>
<b>"><?php the_title(); ?></b>
<?php the_excerpt_reloaded($mytheme['latestexcerpt'], '', 'none', FALSE); ?>
</div>
<?php endwhile; ?>
</div> <!-- end of div cover -->
</div> <!-- end of div myslide -->
</div>
</div></div></div></div></div></div></div></div>
<!-------------- slider end ---------------->