/*
* Obejo Design JS events.
*/

function scripts()
{
	// Fancybox plugin, a tool for displaying images.
	$('a.image, a[rel=gallery]').fancybox(
	{
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition'	: 'over'
	});

	// Animating back-to-top anchor.
	$('a#top').click(function()
	{
		$('body,html').animate(
		{
			scrollTop : 0
		},
		500);
	});

	// Assigning the title value to a new id of every navigation links.
	var $navElement = $('#navegacion li a');
	$navElement.each(function()
	{
		var $this = $(this);
		$this.attr('id', $this.attr('title'));
	});

	/* changeCss(); */
}

function changeCss(style)
{
	document.getElementById('css_color').href=style;
}
