/**
 * execute the following when DOM is ready
 */
$(document).ready(function() {
	// search form
	$('#stock-search form').submit(function(){
		var input = $('#stock-search-text');
		if(input.attr('value') == 'Search Redux Stock Archive'){
			input.attr('value', '');
		}
	});
	
	// offer display
	var href = $('.offerlist a').eq(0).attr('href');
	if(href){
		$('#daily-offer-link').attr('href', href);
	}
	
	$('.offerlist li a.offer-preview').each(function(){
		var count = $(this).parents('li').eq(0).find('h5 .offer-number-media').text();
		var title = '<br />' + $(this).attr('title') + ' ' + count;
		$(this).find('img').after(title);
	});
});