$(document).ready(function(){



/**
*
*	=======================================
*
* CHANGE SITEURL VARIABLE ON SITE MOVE!
*
* =======================================
*/

var siteUrl = "http://moanandorf.se/stuff/eriksmartin";

// randomized background image
var random = Math.floor(Math.random()*10);
if($('body').hasClass('home')) {
	$.backstretch(siteUrl + "/wp-content/themes/martin/images/bg1.jpg", {centeredY: false});
} else if(random == 4 || random == 8 || random == 2) {
	$.backstretch(siteUrl + "/wp-content/themes/martin/images/bg2.jpg", {centeredY: false});
} else if (random == 5 || random == 0 || random == 9){
	$.backstretch(siteUrl + "/wp-content/themes/martin/images/bg3.jpg", {centeredY: false});
} else {
	$.backstretch(siteUrl + "/wp-content/themes/martin/images/bg1.jpg", {centeredY: false});
}

// slidedown of lyrics
$('.lyric div.lyric-content').hide();

$('h2.lyric-title a').click(function(e){
	e.preventDefault();
	var item = $(this).closest('article').find('div.lyric-content');

	if(item.is(':hidden')) {
		var lyricId = '#' + item.closest('article').attr('id');
		item.slideDown('fast', function(){
			$.scrollTo(lyricId,'y');
		});
	} else {
		item.slideUp('fast');
	}
	item.find('a.hide-link').click(function(){
		item.slideUp();
	});

});


$('article.post:has(iframe)').addClass('media');
$('article.post:has(object)').addClass('media');
$('article.post:has(img)').addClass('media');

$('body.page-id-55 #main-content a').prettyPhoto({
	show_title: false
});

$('<div class="pressbilder"><a href="http://martinekman.com/wp-content/uploads/2011/03/MartinEkman_Pressbild_01.jpg">Pressbild 1</a><br/><a href="http://martinekman.com/wp-content/uploads/2011/03/MartinEkman_Pressbild_02.jpg">Pressbild 2</a></div>').appendTo('body.page-id-55 #main-content'); 

});
