$(document).ready(function(){
$(".navigation ul li:last-child").addClass("last"); // This will add class last to the navigation menu


$("#slider-content").fadeIn();


var baselink = $("div#base").html();
$("div#base_link").html(baselink);
$("li.1").addClass('selected');

var commenttext = $("div.comment_1").html();
var link = $("div.link_1").html();

$("div#slider-base div.comments").html(commenttext+"<a href="+link+" class='post_button blue' style='color:white;float:right;margin-left:15px;text-align:center;height:15px;padding-right:8px;padding-left:8px;'>Read More</a>");


var pic = $("div.pic_1").html();
$("div#feature_pic").html(pic);

var title = $("div.title_1").html();
$("div#featured_title").html(title);

var content = $("div.content_1").html();
$("div#featured_post").html(content);


$("div#base_link ul li").click(function(){
var getclass = $(this).attr('class');

$("div#base_link ul li").removeClass('selected');
$(this).addClass('selected');

var commenttext = $("div.comment_"+getclass).html();
var link = $("div.link_"+getclass).html();
$("div#slider-base div.comments").html(commenttext+"<a href="+link+" class='post_button blue' style='color:white;float:right;margin-left:15px;text-align:center;height:15px;padding-right:8px;padding-left:8px;'>Read More</a>");

var pic = $("div.pic_"+getclass).html();
$("div#feature_pic").hide().html(pic).fadeIn(500);

var title = $("div.title_"+getclass).html();
$("div#featured_title").hide().html(title).fadeIn(500);

var content = $("div.content_"+getclass).html();
$("div#featured_post").hide().html(content).fadeIn(500);

return false;

});
});