//////////////////////
// Slideshow Script //
//////////////////////

        $(document).ready(function() {
            
            $('#yourSliderId').DDSlider({
				
				nextSlide: '.slider_arrow_right',
				prevSlide: '.slider_arrow_left',
				selector: '.slider_selector',
				waitTime: '7000'
				
				});
            
        });

////////////////
// 1up Script //
////////////////

$(document).ready(function(){$("span.on_img").mouseover(function (){$(this).addClass("over_img");});$("div.on_img").mouseout(function ()
{$(this).removeClass("over_img");});});$(function() {$(".love").click(function() {var id = $(this).attr("id");var dataString = 'id='+ id ;var parent = $(this);
$(this).fadeOut(300);$.ajax({type: "POST",url: "scripts/ajax_love.php",data: dataString,cache: false,success: function(html){parent.html(html);parent.fadeIn(300);} });return false;
});});

/////////////////////
// Gamelist Script //
/////////////////////

$(function() {
$(".gamelist").click(function() 
{
var id = $(this).attr("id");
var dataString = 'id='+ id ;
var parent = $(this);


$(this).fadeOut(300);
$.ajax({
type: "POST",
url: "http://www.npack.de/scripts/ajax_gamelist.php",
data: dataString,
cache: false,

success: function(html)
{
parent.html(html);
parent.fadeIn(300);

} 
});


return false;

 });
});
