$(document).ready(function() {
	
	// Sliding the DYK section
	$('div#dyk').hide();
	$('div#dyk').slideToggle('normal');
	
	// Follow us
	$('#follow_us img').mouseover(function() {
		$(this).attr("src","../../medias/facebook_on.png");
	});
	$('#follow_us img').mouseleave(function() {
		$(this).attr("src","../../medias/facebook.png");
	});
	
	// Rum slideshow
	$('div.rum-slideshow> .content').hide();
	$('div.rum-slideshow> p').click(function() {
		$(this).next().toggle('normal');
	});	
	
	
});